nectar/Cargo.toml

75 lines
1.8 KiB
TOML
Raw Normal View History

2023-10-02 23:02:53 +03:00
[package]
2024-01-16 01:51:07 +03:00
name = "kinode"
authors = ["UqbarDAO"]
2024-01-08 20:32:24 +03:00
version = "0.5.0"
2023-10-02 23:02:53 +03:00
edition = "2021"
description = "A general-purpose sovereign cloud computing platform"
homepage = "https://kinode.org"
repository = "https://github.com/uqbar-dao/kinode"
2023-10-02 23:02:53 +03:00
2023-10-06 07:12:31 +03:00
[build-dependencies]
2023-12-16 00:21:06 +03:00
reqwest = { version = "0.11.22", features = ["blocking"] }
2023-10-06 20:31:12 +03:00
sha2 = "0.10"
2023-10-06 07:12:31 +03:00
walkdir = "2.4"
2023-10-06 20:31:12 +03:00
zip = "0.6"
2023-11-04 03:41:34 +03:00
[features]
simulation-mode = []
2023-10-06 07:12:31 +03:00
2023-10-02 23:02:53 +03:00
[dependencies]
aes-gcm = "0.10.2"
anyhow = "1.0.71"
async-trait = "0.1.71"
2023-10-25 03:23:51 +03:00
base64 = "0.13"
2023-10-02 23:02:53 +03:00
bincode = "1.3.3"
blake3 = "1.4.1"
bytes = "1.4.0"
cap-std = "2.0.0"
chacha20poly1305 = "0.10.1"
2023-10-04 19:40:36 +03:00
chrono = "0.4.31"
2023-10-31 02:25:04 +03:00
clap = { version = "4.4", features = ["derive"] }
2023-10-02 23:02:53 +03:00
crossterm = { version = "0.26.1", features = ["event-stream", "bracketed-paste"] }
dashmap = "5.5.3"
2023-10-02 23:02:53 +03:00
digest = "0.10"
elliptic-curve = { version = "0.13.5", features = ["ecdh"] }
ethers = "2.0"
ethers-providers = "2.0.9"
2023-10-04 04:12:13 +03:00
flate2 = "1.0"
2023-10-02 23:02:53 +03:00
futures = "0.3"
generic-array = "0.14"
getrandom = "0.2.10"
hex = "0.4.3"
hkdf = "0.12.3"
hmac = "0.12"
http = "0.2.9"
jwt = "0.16"
lazy_static = "1.4.0"
log = "*"
2023-11-16 20:27:16 +03:00
nohash-hasher = "0.2.0"
2023-10-02 23:02:53 +03:00
num-traits = "0.2"
open = "5.0.0"
public-ip = "0.2.2"
rand = "0.8.4"
reqwest = "0.11.18"
ring = "0.16.20"
rmp-serde = "1.1.2"
2023-12-22 03:11:44 +03:00
rocksdb = { version = "0.21.0", features = ["multi-threaded-cf"] }
2023-10-25 03:23:04 +03:00
route-recognizer = "0.3.1"
2023-12-22 03:11:44 +03:00
rusqlite = { version = "0.30.0", features = ["bundled"] }
2023-12-12 08:47:25 +03:00
serde = { version = "1.0", features = ["derive"] }
2023-10-02 23:02:53 +03:00
serde_json = "1.0"
serde_urlencoded = "0.7"
sha2 = "0.10"
snow = { version = "0.9.3", features = ["ring-resolver"] }
static_dir = "0.2.0"
thiserror = "1.0"
2023-12-22 03:11:44 +03:00
tokio = { version = "1.28", features = ["fs", "macros", "rt-multi-thread", "signal", "sync"] }
2024-01-13 00:46:04 +03:00
tokio-stream = "0.1.14"
2023-11-27 20:21:34 +03:00
tokio-tungstenite = "0.20.1"
2023-11-22 01:49:18 +03:00
url = "2.4.1"
2023-10-02 23:02:53 +03:00
uuid = { version = "1.1.2", features = ["serde", "v4"] }
warp = "0.3.5"
2023-12-12 08:47:25 +03:00
wasmtime = "15.0.1"
wasmtime-wasi = "15.0.1"
2023-10-31 02:25:04 +03:00
zip = "0.6"