Skip to content

Commit

Permalink
fix(deps): use toml 0.5.10 (#2095)
Browse files Browse the repository at this point in the history
* fix(deps): use toml 0.5.10

* chore: update cargo.lock
  • Loading branch information
folex committed Feb 20, 2024
1 parent 26f998d commit df662c5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 43 deletions.
42 changes: 4 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/core-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cpu-utils = { git = "https://github.com/fluencelabs/capacity-commitment-prover/"
ccp-shared = { git = "https://github.com/fluencelabs/capacity-commitment-prover/", branch = "main" }
multimap = { version = "0.10.0", features = ["serde"] }
bimap = { version = "0.6.3", features = ["serde"] }
toml = { version = "0.8.10" }
toml = { workspace = true }
newtype_derive = "0.1.6"

tokio = { workspace = true, features = ["fs", "rt", "sync", "macros", "tracing"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/server-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fluence-keypair = { workspace = true }
types = { workspace = true }
core-manager = { workspace = true }
log = "0.4.20"
toml = "0.7.3"
toml = { workspace = true }

libp2p = { workspace = true }
libp2p-metrics = { workspace = true }
Expand Down
3 changes: 2 additions & 1 deletion crates/toml-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ authors = ["Fluence Labs"]
edition = "2021"

[dependencies]
toml = "0.5.10"
toml = { workspace = true }

2 changes: 1 addition & 1 deletion particle-modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fluence-app-service = { workspace = true }

serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
toml = "0.5.10"
toml = { workspace = true }
log = { workspace = true }
base64 = { workspace = true }
thiserror = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion particle-services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ serde_json = { workspace = true }
serde = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
toml = "0.5.10"
toml = { workspace = true }
thiserror = { workspace = true }
derivative = { workspace = true }
eyre = { workspace = true }
Expand Down

0 comments on commit df662c5

Please sign in to comment.