-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (35 loc) · 1.2 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
[package]
name = "domain"
version = "0.1.0"
authors = ["CympleTech <[email protected]>"]
edition = "2021"
readme = "README.md"
description = "ESSE domain service."
repository = "https://github.com/cympletech/domain"
keywords = ["distributed", "p2p", "domain"]
license = "MIT/Apache-2.0"
[dependencies]
anyhow = "1.0"
log = "0.4"
simplelog = "0.11"
blake3 = "1.2"
aes-gcm = "0.9"
sysinfo = "0.23"
once_cell = "1.10"
dotenv = "0.15"
hex = "0.4"
bincode = "1.3"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.5", features = [ "runtime-tokio-native-tls", "postgres" ] }
tdn = { version = "0.8", default-features = false, features = ["std"] }
tdn_did = { version = "0.8" }
tdn_storage = { git = "https://github.com/cympletech/tdn", branch="main" }
domain_types = { git = "https://github.com/cympletech/esse", branch="main" }
# DEBUG patch.
[patch.crates-io]
chamomile = { git = "https://github.com/cympletech/chamomile" }
chamomile_types = { git = "https://github.com/cympletech/chamomile" }
tdn = { git = "https://github.com/cympletech/tdn" }
tdn_types = { git = "https://github.com/cympletech/tdn" }
tdn_did = { git = "https://github.com/cympletech/tdn" }