mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-11-22 11:22:59 +03:00
31 lines
939 B
TOML
31 lines
939 B
TOML
[package]
|
|
name = "lib"
|
|
authors = ["KinodeDAO"]
|
|
version = "0.8.0"
|
|
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]
|
|
anyhow = "1.0.71"
|
|
kit = { git = "https://github.com/kinode-dao/kit", rev = "d319c5b" }
|
|
reqwest = { version = "0.12.4", features = ["blocking"] }
|
|
tokio = "1.28"
|
|
|
|
[dependencies]
|
|
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "05f8162" }
|
|
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy", rev = "05f8162" }
|
|
lazy_static = "1.4.0"
|
|
rand = "0.8.4"
|
|
ring = "0.17.8"
|
|
rusqlite = { version = "0.31.0", features = ["bundled"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.28", features = ["sync"] }
|
|
wasmtime = { version = "19.0.1", features = ["component-model"] }
|