Skip to content

Commit

Permalink
Move tokio
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinton committed Sep 27, 2024
1 parent ff29744 commit ed6867c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ serde_json = ">=1.0.96, <2.0"
serde_qs = ">=0.12.0, <0.14"
serde_repr = ">=0.1.12, <0.2"
thiserror = ">=1.0.40, <2.0"
tokio = { version = "1.36.0", features = ["macros"] }
uniffi = "=0.28.1"
uuid = { version = ">=1.3.3, <2.0", features = ["serde", "v4"] }
wasm-bindgen = { version = "0.2.91", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.41"


[workspace.lints.clippy]
unused_async = "deny"
unwrap_used = "deny"
Expand Down
2 changes: 1 addition & 1 deletion crates/bitwarden-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ rustls-platform-verifier = "0.3.4"
[dev-dependencies]
bitwarden-crypto = { workspace = true }
rand_chacha = "0.3.1"
tokio = { version = "1.36.0", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt"] }
wiremock = "0.6.0"
zeroize = { version = ">=1.7.0, <2.0", features = ["derive", "aarch64"] }

Expand Down
2 changes: 1 addition & 1 deletion crates/bitwarden-generators/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ uniffi = { workspace = true, optional = true }

[dev-dependencies]
rand_chacha = "0.3.1"
tokio = { version = "1.36.0", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt"] }
wiremock = "0.6.0"

[lints]
Expand Down
2 changes: 1 addition & 1 deletion crates/bitwarden-py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pyo3-log = "0.11.0"
pyo3-build-config = { version = "0.22.1" }

[target.'cfg(not(target_arch="wasm32"))'.dependencies]
tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] }
tokio = { workspace = true, features = ["rt-multi-thread"] }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/bitwarden-sm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ uuid = { workspace = true }
validator = { version = "0.18.1", features = ["derive"] }

[dev-dependencies]
tokio = { version = "1.36.0", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt"] }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/bitwarden-vault/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ uniffi = { version = "=0.28.1", optional = true }
uuid = { workspace = true }

[dev-dependencies]
tokio = { version = "1.36.0", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt"] }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/bw/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ color-eyre = "0.6.3"
env_logger = "0.11.1"
inquire = "0.7.0"
log = "0.4.20"
tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] }
tokio = { workspace = true, features = ["rt-multi-thread"] }

[dev-dependencies]
tempfile = "3.10.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/bws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ serde_json = "1.0.113"
serde_yaml = "0.9"
supports-color = "3.0.0"
thiserror = "1.0.57"
tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] }
tokio = { workspace = true, features = ["rt-multi-thread"] }
toml = "0.8.10"
uuid = { version = "1.7.0", features = ["serde"] }
which = "6.0.1"
Expand Down

0 comments on commit ed6867c

Please sign in to comment.