mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-11-22 11:22:59 +03:00
34 lines
880 B
TOML
34 lines
880 B
TOML
[package]
|
|
name = "lib"
|
|
authors = ["KinodeDAO"]
|
|
version = "0.9.11"
|
|
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"
|
|
reqwest = "0.12.4"
|
|
sha2 = "0.10.8"
|
|
tokio = { version = "1.28", features = ["rt-multi-thread"] }
|
|
|
|
[dependencies]
|
|
alloy = { git = "https://github.com/kinode-dao/alloy.git", rev = "e672f3e", features = [
|
|
"json-rpc",
|
|
"rpc-types",
|
|
"rpc-types-eth",
|
|
] }
|
|
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"] }
|