Skip to content

Commit

Permalink
Don't specify full dependency versions (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
devashishdxt authored Aug 12, 2024
1 parent 3a91b3e commit ceedf10
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ builder = ["futures"]
futures = ["tokio"]

[dependencies]
js-sys = "0.3.69"
num-traits = "0.2.19"
thiserror = "1.0.61"
tokio = { version = "1.38.0", features = ["sync"], optional = true }
wasm-bindgen = "0.2.92"
web-sys = { version = "0.3.69", features = [
js-sys = "0.3"
num-traits = "0.2"
thiserror = "1"
tokio = { version = "1", features = ["sync"], optional = true }
wasm-bindgen = "0.2"
web-sys = { version = "0.3", features = [
"DomException",
"DomStringList",
"Event",
Expand All @@ -49,14 +49,14 @@ web-sys = { version = "0.3.69", features = [
] }

[dev-dependencies]
gloo = { version = "0.11.0", default-features = false, features = [
gloo = { version = "0.11", default-features = false, features = [
"timers",
"futures",
] }
serde = "1.0.203"
serde-wasm-bindgen = "0.6.5"
serde_json = "1.0.120"
wasm-bindgen-test = "0.3.42"
serde = "1"
serde-wasm-bindgen = "0.6"
serde_json = "1"
wasm-bindgen-test = "0.3"

[package.metadata.docs.rs]
all-features = true

0 comments on commit ceedf10

Please sign in to comment.