forked from matrix-org/matrix-rust-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 1.02 KB
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
[package]
name = "matrix-sdk-store-encryption"
version = "0.16.0"
edition = "2024"
description = "Helpers for encrypted storage keys for the Matrix SDK"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
license = "Apache-2.0"
rust-version.workspace = true
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
[package.metadata.cargo-machete]
ignored = ["getrandom"] # We do manually enable a feature for it.
[features]
js = ["dep:getrandom", "getrandom?/wasm_js"]
[dependencies]
base64.workspace = true
blake3 = "1.8.2"
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
getrandom = { workspace = true, optional = true }
hmac.workspace = true
pbkdf2.workspace = true
rand.workspace = true
rmp-serde.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
sha2.workspace = true
thiserror.workspace = true
zeroize = { workspace = true, features = ["zeroize_derive"] }
[dev-dependencies]
anyhow.workspace = true
[lints]
workspace = true