2024-02-02 07:43:13 +03:00
|
|
|
[package]
|
|
|
|
name = "lib"
|
|
|
|
authors = ["KinodeDAO"]
|
2024-04-02 19:09:41 +03:00
|
|
|
version = "0.6.3"
|
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]
|
|
|
|
reqwest = { version = "0.11.22", features = ["blocking"] }
|
|
|
|
|
|
|
|
[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"
|
|
|
|
ring = "0.16.20"
|
|
|
|
rusqlite = { version = "0.30.0", features = ["bundled"] }
|
|
|
|
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"] }
|