Skip to content

Commit

Permalink
Merge pull request #1080 from spkenv/fix-deprecation-cargo
Browse files Browse the repository at this point in the history
Fix deprecation warnings in latest cargo version
  • Loading branch information
rydrman authored Jul 17, 2024
2 parents 3889e10 + d461df1 commit a36ada4
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion crates/spfs-encoding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ thiserror = { workspace = true }
miette = { workspace = true }

[dev-dependencies]
rstest = { version = "0.15.0", default_features = false }
rstest = { version = "0.15.0", default-features = false }
rand = { workspace = true }
2 changes: 1 addition & 1 deletion crates/spfs-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ flatc-rust = "0.2"

[dev-dependencies]
ring = { workspace = true }
rstest = { version = "0.15.0", default_features = false }
rstest = { version = "0.15.0", default-features = false }
2 changes: 1 addition & 1 deletion crates/spfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ tonic-build = { workspace = true }

[dev-dependencies]
criterion = { version = "0.3", features = ["async_tokio", "html_reports"] }
rstest = { version = "0.15.0", default_features = false }
rstest = { version = "0.15.0", default-features = false }
serial_test = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
static_assertions = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/spk-schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ migration-to-components = ["spk-schema-foundation/migration-to-components"]
data-encoding = "2.3"
dunce = { workspace = true }
enum_dispatch = "0.3.8"
format_serde_error = { version = "0.3", default_features = false, features = [
format_serde_error = { version = "0.3", default-features = false, features = [
"serde_yaml",
"colored",
] }
Expand Down
2 changes: 1 addition & 1 deletion crates/spk-schema/crates/foundation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ arc-swap = { workspace = true }
colored = { workspace = true }
data-encoding = "2.3"
enum_dispatch = "0.3.8"
format_serde_error = { version = "0.3", default_features = false, features = [
format_serde_error = { version = "0.3", default-features = false, features = [
"serde_yaml",
"colored",
] }
Expand Down
2 changes: 1 addition & 1 deletion crates/spk-schema/crates/ident/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ migration-to-components = ["spk-schema-foundation/migration-to-components"]

[dependencies]
colored = { workspace = true }
format_serde_error = { version = "0.3", default_features = false, features = [
format_serde_error = { version = "0.3", default-features = false, features = [
"serde_yaml",
"colored",
] }
Expand Down
2 changes: 1 addition & 1 deletion crates/spk-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ colored = { workspace = true }
dashmap = "5.4.0"
data-encoding = "2.3.0"
enum_dispatch = "0.3.8"
format_serde_error = { version = "0.3", default_features = false, features = [
format_serde_error = { version = "0.3", default-features = false, features = [
"serde_yaml",
"colored",
] }
Expand Down

0 comments on commit a36ada4

Please sign in to comment.