forked from cloudflare/plexi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (53 loc) · 1.39 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
47
48
49
50
51
52
53
54
55
56
57
[workspace]
members = [
"plexi_cli",
"plexi_core"
]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = [
"plexi-contributors", # utoipa only supports the first author as contact
"Thibault Meunier <[email protected]>",
"Fisher Darling <[email protected]>",
"JP Borges <[email protected]>",
"Lina Baquero <[email protected]>",
"Simon Newton <[email protected]>"
]
edition = "2021"
readme = "README.md"
homepage = "https://github.com/cloudflare/plexi"
repository = "https://github.com/cloudflare/plexi"
keywords = ["key-transparency", "transparency", "e2ee", "auditor", "cryptography"]
categories = ["cryptography"]
license = "Apache-2.0"
[workspace.dependencies]
akd = { version = "0.11", default-features = false }
anyhow = "1.0"
bincode = "2.0.0-rc.3"
clap = { version = "4.5", features = ["derive"] }
clap-verbosity-flag = "2.2.0"
colored = "2.1"
env_logger = { version = "0.11" }
ed25519-dalek = { version = "2" }
futures-util = "0.3"
getrandom = "0.2"
hex = { version = "0.4" }
log = "0.4"
prost = "0.13"
protobuf = "3.2"
reqwest = "0.12"
serde = "1.0"
serde_json = "1.0"
sha2 = "0.10"
thiserror = { version = "1.0" }
time = "0.3"
tokio = "1.0"
utoipa = "4"
uuid = { version = "1.9", features = ["v4", "serde"] }
# workspace dependencies
plexi-core = { version = "0.1", path = "./plexi_core" }
[profile.release]
lto = true
strip = true
codegen-units = 1