Remove unused getrandom dependency (#4734)

This commit is contained in:
Charlie Marsh 2023-05-30 14:34:20 -04:00 committed by GitHub
parent 04a95cb9ee
commit a4f73ea8c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 6 deletions

3
Cargo.lock generated
View file

@ -775,10 +775,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"js-sys",
"libc", "libc",
"wasi 0.11.0+wasi-snapshot-preview1", "wasi 0.11.0+wasi-snapshot-preview1",
"wasm-bindgen",
] ]
[[package]] [[package]]
@ -2063,7 +2061,6 @@ version = "0.0.0"
dependencies = [ dependencies = [
"console_error_panic_hook", "console_error_panic_hook",
"console_log", "console_log",
"getrandom",
"js-sys", "js-sys",
"log", "log",
"ruff", "ruff",

View file

@ -13,16 +13,14 @@ crate-type = ["cdylib", "rlib"]
default = ["console_error_panic_hook"] default = ["console_error_panic_hook"]
[dependencies] [dependencies]
ruff = { path = "../ruff" }
ruff_diagnostics = { path = "../ruff_diagnostics" } ruff_diagnostics = { path = "../ruff_diagnostics" }
ruff_python_ast = { path = "../ruff_python_ast" } ruff_python_ast = { path = "../ruff_python_ast" }
ruff_rustpython = { path = "../ruff_rustpython" } ruff_rustpython = { path = "../ruff_rustpython" }
console_error_panic_hook = { version = "0.1.7", optional = true } console_error_panic_hook = { version = "0.1.7", optional = true }
console_log = { version = "1.0.0" } console_log = { version = "1.0.0" }
getrandom = { version = "0.2.8", features = ["js"] }
log = { workspace = true } log = { workspace = true }
ruff = { path = "../ruff" }
rustpython-parser = { workspace = true } rustpython-parser = { workspace = true }
serde = { workspace = true } serde = { workspace = true }
serde-wasm-bindgen = { version = "0.5.0" } serde-wasm-bindgen = { version = "0.5.0" }