summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 1eb7537ae1a828d8f68aeede8d19d63235b9022a (plain) (blame)
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
[workspace]
members = [
    "onioncoin",
    "core",
    "crypto",
    "network",
    "timing",
    "consensus",
    "inheritance",
]
resolver = "2"

[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["OnionCoin Developers"]
license = "MIT"

[workspace.dependencies]
# Crypto
ed25519-dalek = "2.1"
curve25519-dalek = "4.1"
sha3 = "0.10"
rand = "0.8"
blake3 = "1.5"

# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
serde_bytes = "0.11"

# Async & Networking
tokio = { version = "1.35", features = ["full"] }
async-trait = "0.1"

# Time
chrono = "0.4"

# Error handling
thiserror = "1.0"
anyhow = "1.0"