-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (54 loc) · 1.52 KB
/
Copy pathCargo.toml
File metadata and controls
65 lines (54 loc) · 1.52 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[workspace]
resolver = "2"
members = [
"crates/witness-core",
"crates/witness-node",
"crates/witness-gateway",
"crates/witness-cli",
]
[workspace.package]
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
authors = ["The Carpocratian Church of Commonaltity and Equality, Inc."]
repository = "https://git.carpocratian.org/sibyl/witness"
homepage = "https://git.carpocratian.org/sibyl/witness"
readme = "README.md"
description = "A federated threshold witness timestamping system"
[workspace.dependencies]
# Core dependencies
witness-core = { path = "crates/witness-core", version = "0.3.0" }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Cryptography
ed25519-dalek = { version = "2.1", features = ["rand_core"] }
blst = "0.3"
sha2 = "0.10"
rand = "0.8"
zeroize = { version = "1.8", features = ["derive", "zeroize_derive"] }
subtle = "2.5"
# Async runtime
tokio = { version = "1.35", features = ["full"] }
axum = { version = "0.7", features = ["ws"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors"] }
# HTTP client
reqwest = { version = "0.11", features = ["json"] }
# Database
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite"] }
# CLI
clap = { version = "4.4", features = ["derive", "env"] }
# Rate limiting
governor = "0.8"
# Utilities
anyhow = "1.0"
thiserror = "1.0"
hex = "0.4"
base64 = "0.21"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1