blob: 54e79939e73f54ff5c0cbd1964b982ae2bd3f3bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[package]
name = "rc_crypto"
version = "0.1.0"
authors = ["application-services@mozilla.com"]
edition = "2018"
license = "MPL-2.0"
[lib]
crate-type = ["lib"]
[dependencies]
base64 = "0.12"
thiserror = "1.0"
error-support = { path = "../error" }
nss = { path = "nss" }
hawk = { version = "3.2", default-features = false, optional = true }
ece = { version = "1.2" , default-features = false, features = ["serializable-keys"], optional = true }
[dev-dependencies]
hex = "0.4"
[features]
default = []
gecko = ["nss/gecko"]
|