Skip to content

Commit

Permalink
Update Rust crate borsh to v1
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 30, 2023
1 parent 75090eb commit 512b088
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 84 deletions.
86 changes: 9 additions & 77 deletions src/Cargo.lock

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

4 changes: 2 additions & 2 deletions src/integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ qos_p256 = { path = "../qos_p256", features = ["mock"] }
qos_test_primitives = { path = "../qos_test_primitives" }

tokio = { version = "1.33", features = ["macros", "rt-multi-thread"], default-features = false }
borsh = { version = "0.10" }
borsh = { version = "1.1" }
nix = { version = "0.26", features = ["socket"], default-features = false }

[dev-dependencies]
qos_core = { path = "../qos_core", features = ["mock"], default-features = false }
borsh = { version = "0.10" }
borsh = { version = "1.1" }
aws-nitro-enclaves-nsm-api = { version = "0.3", default-features = false }
rand = "0.8"
2 changes: 1 addition & 1 deletion src/qos_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ qos_nsm = { path = "../qos_nsm", default-features = false }
# Third party
ureq = { version = "2.6", default-features = false }
aws-nitro-enclaves-nsm-api = { version = "0.3", default-features = false }
borsh = { version = "0.10", default-features = false }
borsh = { version = "1.1", default-features = false }
p256 = { version = "0.12.0", default-features = false }
rand_core = { version = "0.6", default-features = false }
zeroize = { version = "1.6", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/qos_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ qos_nsm = { path = "../qos_nsm", default-features = false }

nix = { version = "0.26", features = ["socket"], default-features = false }
libc = "=0.2.148"
borsh = { version = "0.10" }
borsh = { version = "1.1" }

# For AWS Nitro
aws-nitro-enclaves-nsm-api = { version = "0.3", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/qos_host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ qos_core = { path = "../qos_core", default-features = false }
# Third party
axum = { version = "0.6.20", features = ["http1", "tokio"], default-features = false }
tokio = { version = "1.33", features = ["macros", "rt-multi-thread"], default-features = false }
borsh = { version = "0.10" }
borsh = { version = "1.1" }

[features]
vm = ["qos_core/vm"]
2 changes: 1 addition & 1 deletion src/qos_nsm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
qos_hex = { path = "../qos_hex" }
borsh = { version = "0.10" }
borsh = { version = "1.1" }
aws-nitro-enclaves-nsm-api = { version = "0.3", features = ["nix"], default-features = false }
aws-nitro-enclaves-cose = { version = "0.5", default-features = false }
sha2 = { version = "0.10", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/qos_p256/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
qos_hex = { path = "../qos_hex" }

borsh = { version = "0.10", default-features = false }
borsh = { version = "1.1", default-features = false }
rand_core = { version = "0.6.4", default-features = false }

sha2 = { version = "0.10", default-features = false }
Expand Down

0 comments on commit 512b088

Please sign in to comment.