Skip to content

Commit 8098054

Browse files
committed
tests
1 parent 9753f44 commit 8098054

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/fable-library-rust/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ threaded = ["atomic", "dep:futures"]
1919
default = ["bigint", "datetime", "decimal", "enum_func", "enum_string", "guid", "regexp"]
2020

2121
[dependencies]
22-
startup = { version = "0.1", path = "vendored/startup", optional = true }
23-
hashbrown = { version = "0.14", optional = true }
24-
num-bigint = { version = "0.4", optional = true }
25-
num-integer = { version = "0.1", optional = true }
26-
num-traits = { version = "0.2", optional = true }
27-
rust_decimal = { version = "1.35", features = ["maths"], default-features = false, optional = true }
28-
futures = { version = "0.3", features = ["executor", "thread-pool"], optional = true }
22+
startup = { version = ">=0.1,<1", path = "vendored/startup", optional = true }
23+
hashbrown = { version = ">=0.15,<1", optional = true }
24+
num-bigint = { version = ">=0.4,<1", optional = true }
25+
num-integer = { version = ">=0.1,<1", optional = true }
26+
num-traits = { version = ">=0.2,<1", optional = true }
27+
rust_decimal = { version = "1.36", features = ["maths"], default-features = false, optional = true }
28+
futures = { version = ">=0.3,<1", features = ["executor", "thread-pool"], optional = true }
2929
uuid = { version = "1.10", features = ["v4"], default-features = false, optional = true }
30-
chrono = { version = "0.4", optional = true }
31-
regex = { version = "1.10", optional = true }
30+
chrono = { version = ">=0.4,<1", optional = true }
31+
regex = { version = "1.11", optional = true }
3232

3333
[target.'cfg(target_arch = "wasm32")'.dependencies]
34-
getrandom = { version = "0.2", features = ["js"] }
34+
getrandom = { version = ">=0.2,<1", features = ["js"] }

0 commit comments

Comments
 (0)