forked from CympleTech/ESSE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.01 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
[package]
name = "esse"
version = "0.1.0"
authors = ["CympleTech <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
[lib]
name = "esse"
crate-type = ["cdylib", "staticlib"]
[[bin]]
name = "esse"
path = "src/daemon.rs"
[profile.release]
opt-level = 's'
lto = true
codegen-units = 1
panic = 'abort'
[dependencies]
log = "0.4"
rand = "0.8"
simplelog = "0.8"
image = "0.23"
base64 = "0.13"
sha2 = "0.9"
blake3 = "0.3"
aes-gcm = "0.8"
async-lock = "2.3"
async-channel = "1.4"
async-fs = "1.5"
serde = { version = "1", features = ["derive"] }
postcard = { version = "0.5", default-features = false, features = ["alloc"] }
sysinfo = "0.16"
tdn = { git = "https://github.com/cypherlink/TDN", branch="main", default-features = false, features = ["full"] }
tdn-did = { git = "https://github.com/cypherlink/tdn-did", branch="main" }
tdn-storage = { git = "https://github.com/cypherlink/tdn-storage", branch="main" }
[target.'cfg(target_os="android")'.dependencies]
jni = { version = "0.19", default-features = false }