diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /security/manager/ssl/cert_storage/Cargo.toml | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream/115.8.0esr.tar.xz firefox-esr-upstream/115.8.0esr.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'security/manager/ssl/cert_storage/Cargo.toml')
-rw-r--r-- | security/manager/ssl/cert_storage/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/security/manager/ssl/cert_storage/Cargo.toml b/security/manager/ssl/cert_storage/Cargo.toml new file mode 100644 index 0000000000..e8b4690421 --- /dev/null +++ b/security/manager/ssl/cert_storage/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "cert_storage" +version = "0.0.1" +authors = ["Dana Keeler <dkeeler@mozilla.com>", "Mark Goodwin <mgoodwin@mozilla.com"] +license = "MPL-2.0" + +[dependencies] +base64 = "0.21.0" +byteorder = "1.2.7" +crossbeam-utils = "0.8" +cstr = "0.2" +log = "0.4" +moz_task = { path = "../../../../xpcom/rust/moz_task" } +nserror = { path = "../../../../xpcom/rust/nserror" } +nsstring = { path = "../../../../xpcom/rust/nsstring" } +rkv = { version = "0.18", default-features = false } +rust_cascade = "1.4.0" +sha2 = "0.10.2" +storage_variant = { path = "../../../../storage/variant" } +tempfile = "3" +thin-vec = { version = "0.2.1", features = ["gecko-ffi"] } +time = "0.1" +xpcom = { path = "../../../../xpcom/rust/xpcom" } +wr_malloc_size_of = { path = "../../../../gfx/wr/wr_malloc_size_of" } |