diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2020-11-14 02:31:57 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-13 22:01:57 +0100 |
| commit | d5661f677e9f5675fc488c4629e85a58764ec3ff (patch) | |
| tree | 6878ec81e2da2d41d93e3f429a189edcd4202539 /cli/Cargo.toml | |
| parent | 2c8439bc1e8118225c8ba4d64658c1c6b2182937 (diff) | |
refactor: deno_crypto op crate (#7956)
This commit factors out "deno_crypto" op crate.
"rand" crate dependency was consequently moved to
"deno_crypto" crate and reexported.
Diffstat (limited to 'cli/Cargo.toml')
| -rw-r--r-- | cli/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 8459139bf..8e389c23a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -20,6 +20,7 @@ harness = false path = "./bench/main.rs" [build-dependencies] +deno_crypto = { path = "../op_crates/crypto", version = "0.1.1" } deno_core = { path = "../core", version = "0.67.0" } deno_web = { path = "../op_crates/web", version = "0.18.0" } deno_fetch = { path = "../op_crates/fetch", version = "0.10.0" } @@ -31,6 +32,7 @@ winres = "0.1.11" winapi = "0.3.9" [dependencies] +deno_crypto = { path = "../op_crates/crypto", version = "0.1.1" } deno_core = { path = "../core", version = "0.67.0" } deno_doc = "0.1.15" deno_lint = "0.2.9" @@ -55,7 +57,6 @@ libc = "0.2.77" log = "0.4.11" env_logger = "0.7.1" notify = "5.0.0-pre.3" -rand = "0.7.3" regex = "1.3.9" ring = "0.16.15" rustyline = { version = "6.3.0", default-features = false } |
