Skip to content

Commit 024a4dc

Browse files
committed
init
1 parent e8d9b62 commit 024a4dc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ pbjson-types = "0.7"
143143
# Should match arrow-flight's version of prost.
144144
prost = "0.13.1"
145145
prost-derive = "0.13.1"
146-
rand = "0.8"
146+
rand = { version = "0.8", features = ["getrandom"] }
147147
recursive = "0.1.1"
148148
regex = "1.8"
149149
rstest = "0.24.0"

datafusion/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ tempfile = { workspace = true }
131131
tokio = { workspace = true }
132132
tokio-util = { version = "0.7.4", features = ["io"], optional = true }
133133
url = { workspace = true }
134-
uuid = { version = "1.7", features = ["v4"] }
134+
uuid = { version = "1.7", features = ["v4", "js", "rng-getrandom"] }
135135
xz2 = { version = "0.1", optional = true, features = ["static"] }
136136
zstd = { version = "0.13", optional = true, default-features = false }
137137

datafusion/functions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ rand = { workspace = true }
8686
regex = { workspace = true, optional = true }
8787
sha2 = { version = "^0.10.1", optional = true }
8888
unicode-segmentation = { version = "^1.7.1", optional = true }
89-
uuid = { version = "1.7", features = ["v4"], optional = true }
89+
uuid = { version = "1.7", features = ["v4", "js", "rng-getrandom"], optional = true }
9090

9191
[dev-dependencies]
9292
arrow = { workspace = true, features = ["test_utils"] }

datafusion/wasmtest/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ datafusion-physical-expr-common = { workspace = true }
5959
datafusion-physical-plan = { workspace = true }
6060
datafusion-sql = { workspace = true }
6161
# getrandom must be compiled with js feature
62-
getrandom = { version = "0.2.8", features = ["js"] }
62+
getrandom = { version = "0.2.8", features = ["js", "getrandom"] }
6363

6464
parquet = { workspace = true }
65-
wasm-bindgen = "0.2.99"
66-
wasm-bindgen-futures = "0.4.49"
65+
wasm-bindgen = "0.2.100"
66+
wasm-bindgen-futures = "0.4.50"
6767

6868
[dev-dependencies]
6969
tokio = { workspace = true }

0 commit comments

Comments
 (0)