-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
47 lines (40 loc) · 1.25 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
edition = "2021"
name = "xmtp_cryptography"
rust-version = "1.70"
version.workspace = true
license.workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown", "aarch64-apple-darwin"]
[dependencies]
openmls_basic_credential.workspace = true
openmls_traits.workspace = true
curve25519-dalek = "4"
ecdsa = "0.16.9"
k256 = { version = "0.13.3", features = ["ecdh"] }
rand = { workspace = true }
rand_chacha = "0.3.1"
tracing.workspace = true
ethers = { workspace = true }
hex = { workspace = true }
rustc-hex.workspace = true
serde = { workspace = true }
sha2.workspace = true
sha3.workspace = true
thiserror = { workspace = true }
tls_codec.workspace = true
ed25519-dalek = { workspace = true, features = ["digest"] }
zeroize.workspace = true
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { workspace = true, features = ["js"] }
wasm-bindgen-test.workspace = true
wasm-bindgen-futures.workspace = true
[features]
ws = ["ethers/ws"]
# Expose private keys in addition to public
exposed-keys = []
[dev-dependencies]
openmls_basic_credential = { workspace = true, features = ["test-utils"] }
bincode.workspace = true
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test.workspace = true