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 /op_crates/crypto/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 'op_crates/crypto/Cargo.toml')
| -rw-r--r-- | op_crates/crypto/Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/op_crates/crypto/Cargo.toml b/op_crates/crypto/Cargo.toml new file mode 100644 index 000000000..3bcaf7490 --- /dev/null +++ b/op_crates/crypto/Cargo.toml @@ -0,0 +1,19 @@ +# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. + +[package] +name = "deno_crypto" +version = "0.1.1" +edition = "2018" +description = "Collection of WebCrypto APIs" +authors = ["the Deno authors"] +license = "MIT" +readme = "README.md" +repository = "https://github.com/denoland/deno" + +[lib] +path = "lib.rs" + +[dependencies] +deno_core = { version = "0.67.0", path = "../../core" } +rand = "0.7.3" + |
