2024-02-02 07:43:13 +03:00
|
|
|
[package]
|
|
|
|
name = "kinode"
|
|
|
|
authors = ["KinodeDAO"]
|
2024-11-20 21:02:35 +03:00
|
|
|
version = "0.9.11"
|
2024-02-02 07:43:13 +03:00
|
|
|
edition = "2021"
|
|
|
|
description = "A general-purpose sovereign cloud computing platform"
|
|
|
|
homepage = "https://kinode.org"
|
|
|
|
repository = "https://github.com/kinode-dao/kinode"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "kinode"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
anyhow = "1.0.71"
|
2024-10-09 05:32:22 +03:00
|
|
|
sha2 = "0.10.8"
|
2024-02-02 07:43:13 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
simulation-mode = []
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-25 23:14:36 +03:00
|
|
|
aes-gcm = "0.10.3"
|
2024-08-22 21:40:46 +03:00
|
|
|
alloy = { git = "https://github.com/kinode-dao/alloy.git", rev = "e672f3e", features = [
|
2024-06-06 06:56:30 +03:00
|
|
|
"consensus",
|
|
|
|
"contract",
|
|
|
|
"json-rpc",
|
|
|
|
"network",
|
|
|
|
"provider-ws",
|
|
|
|
"providers",
|
|
|
|
"pubsub",
|
2024-06-17 21:59:25 +03:00
|
|
|
"rpc",
|
2024-06-06 06:56:30 +03:00
|
|
|
"rpc-client",
|
2024-06-17 21:59:25 +03:00
|
|
|
"rpc-client-ws",
|
2024-06-06 06:56:30 +03:00
|
|
|
"rpc-types",
|
2024-06-17 21:59:25 +03:00
|
|
|
"rpc-types-eth",
|
2024-06-06 06:56:30 +03:00
|
|
|
"signers",
|
2024-06-18 06:54:27 +03:00
|
|
|
"signer-local",
|
2024-06-06 06:56:30 +03:00
|
|
|
] }
|
2024-07-01 14:54:53 +03:00
|
|
|
alloy-primitives = "0.7.6"
|
|
|
|
alloy-sol-macro = "0.7.6"
|
|
|
|
alloy-sol-types = "0.7.6"
|
2024-02-02 07:43:13 +03:00
|
|
|
anyhow = "1.0.71"
|
|
|
|
async-trait = "0.1.71"
|
2024-04-22 16:50:46 +03:00
|
|
|
base64 = "0.22.0"
|
2024-02-02 07:43:13 +03:00
|
|
|
bincode = "1.3.3"
|
|
|
|
chrono = "0.4.31"
|
|
|
|
clap = { version = "4.4", features = ["derive"] }
|
2024-04-22 16:50:46 +03:00
|
|
|
crossterm = { version = "0.27.0", features = ["event-stream", "bracketed-paste"] }
|
2024-02-02 07:43:13 +03:00
|
|
|
dashmap = "5.5.3"
|
|
|
|
futures = "0.3"
|
2024-06-12 07:43:30 +03:00
|
|
|
generic-array = "0.14.7"
|
2024-02-02 07:43:13 +03:00
|
|
|
hex = "0.4.3"
|
|
|
|
hmac = "0.12"
|
2024-04-22 16:50:46 +03:00
|
|
|
http = "1.1.0"
|
2024-08-30 10:45:24 +03:00
|
|
|
indexmap = "2.4"
|
2024-02-02 07:43:13 +03:00
|
|
|
jwt = "0.16"
|
|
|
|
lib = { path = "../lib" }
|
|
|
|
lazy_static = "1.4.0"
|
2024-09-26 08:07:41 +03:00
|
|
|
libc = "0.2"
|
2024-02-02 07:43:13 +03:00
|
|
|
nohash-hasher = "0.2.0"
|
2024-06-12 07:43:30 +03:00
|
|
|
open = "5.1.4"
|
2024-02-02 07:43:13 +03:00
|
|
|
public-ip = "0.2.2"
|
|
|
|
rand = "0.8.4"
|
2024-10-15 06:22:30 +03:00
|
|
|
regex = "1.11.0"
|
2024-04-22 16:50:46 +03:00
|
|
|
reqwest = "0.12.4"
|
|
|
|
ring = "0.17.8"
|
2024-02-02 07:43:13 +03:00
|
|
|
rmp-serde = "1.1.2"
|
2024-04-22 16:50:46 +03:00
|
|
|
rocksdb = { version = "0.22.0", features = ["multi-threaded-cf"] }
|
2024-02-02 07:43:13 +03:00
|
|
|
route-recognizer = "0.3.1"
|
2024-04-22 16:50:46 +03:00
|
|
|
rusqlite = { version = "0.31.0", features = ["bundled"] }
|
2024-02-02 07:43:13 +03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2024-06-12 07:43:30 +03:00
|
|
|
sha2 = "0.10.8"
|
2024-05-08 01:21:48 +03:00
|
|
|
sha3 = "0.10.8"
|
2024-05-29 07:40:00 +03:00
|
|
|
# snow = { version = "0.9.5", features = ["ring-resolver"] }
|
|
|
|
# unfortunately need to use forked version for async use and in-place encryption
|
|
|
|
snow = { git = "https://github.com/dr-frmr/snow", branch = "dr/extract_cipherstates", features = ["ring-resolver"] }
|
2024-05-28 09:18:24 +03:00
|
|
|
socket2 = "0.5.7"
|
2024-02-02 07:43:13 +03:00
|
|
|
static_dir = "0.2.0"
|
|
|
|
thiserror = "1.0"
|
|
|
|
tokio = { version = "1.28", features = ["fs", "macros", "rt-multi-thread", "signal", "sync"] }
|
2024-05-17 01:30:46 +03:00
|
|
|
tokio-tungstenite = { version = "0.21.0", features = ["native-tls"] }
|
2024-09-06 03:36:26 +03:00
|
|
|
unicode-segmentation = "1.11"
|
2024-09-11 06:25:54 +03:00
|
|
|
unicode-width = "0.1.13"
|
2024-02-02 07:43:13 +03:00
|
|
|
url = "2.4.1"
|
|
|
|
warp = "0.3.5"
|
2024-04-04 02:53:07 +03:00
|
|
|
wasi-common = "19.0.1"
|
|
|
|
wasmtime = "19.0.1"
|
|
|
|
wasmtime-wasi = "19.0.1"
|
2024-04-22 16:50:46 +03:00
|
|
|
zip = "1.1.1"
|