-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 947 Bytes
/
Cargo.toml
File metadata and controls
38 lines (36 loc) · 947 Bytes
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
[workspace]
resolver = "2"
members = [
"packages/aead",
"packages/async-traits",
"packages/encrypt",
"packages/kms",
"packages/protected",
"packages/protected-derive",
"packages/password",
"packages/permutation",
"packages/random",
"packages/random-derives",
"packages/traits",
"packages/vitaminc",
]
[workspace.package]
documentation = "https://docs.rs/vitaminc"
version = "0.1.0-pre4.2"
repository = "https://github.com/cipherstash/vitaminc"
authors = [
"Dan Draper <dan@cipherstash.com>",
]
edition = "2021"
rust-version = "1.85.0"
homepage = "https://cipherstash.com"
license = "MIT"
keywords = ["cryptography", "security"]
categories = ["cryptography"]
[workspace.dependencies]
bitvec = "1.0.1"
rand = { version = "0.10.0", features = ["chacha"] }
thiserror = "2.0.18"
zeroize = { version = "1", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"