Skip to content

Commit

Permalink
update devcontainer and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
LimpidCrypto committed Nov 2, 2024
1 parent 854c335 commit 2dc6073
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"panicbit.cargo",
"vadimcn.vscode-lldb",
"tamasfe.even-better-toml",
"Swellaby.vscode-rust-test-adapter"
"Swellaby.vscode-rust-test-adapter",
"fill-labs.dependi"
],
"settings": {
"files.autoSave": "onFocusChange",
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ ed25519-dalek = { version = "2.1.1", default-features = false, features = [
"alloc",
"zeroize",
] }
secp256k1 = { version = "0.29.0", default-features = false, features = [
secp256k1 = { version = "0.30.0", default-features = false, features = [
"alloc",
] }
bs58 = { version = "0.5.0", default-features = false, features = [
"check",
"alloc",
] }
indexmap = { version = "2.0.0", features = ["serde"] }
indexmap = { version = "2.6.0", features = ["serde"] }
regex = { version = "1.5.4", default-features = false }
strum = { version = "0.26.3", default-features = false }
strum_macros = { version = "0.26.4", default-features = false }
Expand All @@ -61,7 +61,7 @@ serde_json = { version = "1.0.68", default-features = false, features = [
serde_with = "3.2.0"
serde_repr = "0.1"
zeroize = "1.5.7"
hashbrown = { version = "0.14.5", features = ["serde"] }
hashbrown = { version = "0.15.0", features = ["serde"] }
fnv = { version = "1.0.7", default-features = false }
derive-new = { version = "0.7.0", default-features = false }
thiserror-no-std = "2.0.2"
Expand All @@ -76,13 +76,13 @@ embassy-time = { version = "0.3.2", optional = true }
embedded-websocket-embedded-io = { version = "0.1.0", optional = true, default-features = false, features = [
"embedded-io-async",
] }
reqwless = { version = "0.12.1", optional = true }
reqwless = { version = "0.13.0", optional = true }
reqwest = { version = "0.12.7", optional = true, features = ["json"] }
tokio-tungstenite = { version = "0.23.1", optional = true, features = [
tokio-tungstenite = { version = "0.24.0", optional = true, features = [
"native-tls",
] }
embassy-futures = { version = "0.1.1" }
embedded-nal-async = { version = "0.7.1", optional = true }
embedded-nal-async = { version = "0.8.0", optional = true }
actix-rt = { version = "2.10.0", optional = true }
async-std = { version = "1.13.0", optional = true }
futures-executor = { version = "0.3.30", optional = true }
Expand Down

0 comments on commit 2dc6073

Please sign in to comment.