27 lines
669 B
TOML
27 lines
669 B
TOML
[package]
|
|
name = "iota-storage"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
ttp-core = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-core" }
|
|
ttp-native = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-native" }
|
|
|
|
aes-gcm = "0.10.3"
|
|
base64 = "0.22.1"
|
|
hex = "*"
|
|
hkdf = "0.12.4"
|
|
json = "*"
|
|
once_cell = "1.21.3"
|
|
rand = "0.8"
|
|
rand_core = { version = "0.6", features = ["getrandom", "std"] }
|
|
ratatui = "0.30.0"
|
|
reqwest = "0.13.2"
|
|
rusqlite = "0.39.0"
|
|
sha2 = "0.10.9"
|
|
sysinfo = "0.38.3"
|
|
tokio = { version = "1.50.0", features = ["full"] }
|
|
uuid = { version = "*", features = ["v4"] }
|
|
walkdir = "2.5.0"
|
|
x448 = { version = "*" }
|
|
zip = "6.0.0"
|