mirror of https://github.com/CympleTech/ESSE.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
[package] |
|
name = "esse" |
|
version = "0.1.0" |
|
authors = ["CympleTech <contact@cympletech.com>"] |
|
edition = "2021" |
|
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] |
|
anyhow = "1.0" |
|
log = "0.4" |
|
rand = "0.8" |
|
once_cell = "1.7" |
|
simplelog = "=0.10.0" |
|
image = "0.23" |
|
base64 = "0.13" |
|
blake3 = "0.3" |
|
bincode = "1.3" |
|
aes-gcm = "0.8" |
|
sysinfo = "0.16" |
|
serde = { version = "1", features = ["derive"] } |
|
tokio = { version = "1", features = ["full"] } |
|
tdn = { version = "0.5", 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" } |
|
group-chat_types = { git = "https://github.com/cympletech/esse_types", branch="main" } |
|
domain_types = { git = "https://github.com/cympletech/esse_types", branch="main" } |
|
#group-chat_types = { path = "../esse_types/group_chat" } |
|
#domain_types = { path = "../esse_types/domain" } |
|
|
|
[target.'cfg(target_os="android")'.dependencies] |
|
jni = { version = "0.19", default-features = false }
|
|
|