2024-02-02 07:43:13 +03:00
|
|
|
[package]
|
|
|
|
name = "lib"
|
|
|
|
authors = ["KinodeDAO"]
|
2024-05-15 06:25:03 +03:00
|
|
|
version = "0.7.4"
|
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"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[build-dependencies]
|
2024-04-04 04:43:15 +03:00
|
|
|
anyhow = "1.0.71"
|
2024-05-17 02:06:55 +03:00
|
|
|
kit = { git = "https://github.com/kinode-dao/kit", rev = "49093a0" }
|
2024-04-22 16:50:46 +03:00
|
|
|
reqwest = { version = "0.12.4", features = ["blocking"] }
|
2024-04-04 04:43:15 +03:00
|
|
|
tokio = "1.28"
|
2024-02-02 07:43:13 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-26 07:42:38 +03:00
|
|
|
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "6f8ebb4" }
|
2024-02-02 07:43:13 +03:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
rand = "0.8.4"
|
2024-04-22 16:50:46 +03:00
|
|
|
ring = "0.17.8"
|
|
|
|
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"
|
|
|
|
thiserror = "1.0"
|
2024-03-09 00:52:41 +03:00
|
|
|
tokio = { version = "1.28", features = ["sync"] }
|
2024-04-04 02:53:07 +03:00
|
|
|
wasmtime = { version = "19.0.1", features = ["component-model"] }
|