-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
85 lines (80 loc) · 1.83 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
name = "kit"
authors = ["Sybil Technologies AG"]
version = "0.9.1"
edition = "2021"
description = "Development toolkit for Kinode"
homepage = "https://kinode.org"
repository = "https://github.com/kinode-dao/kit"
license = "Apache-2.0"
[build-dependencies]
anyhow = "1.0"
git2 = "0.18"
[dependencies]
alloy = { version = "0.8.1", features = [
"consensus",
"contract",
"json-rpc",
"network",
"provider-ws",
"providers",
"pubsub",
"rpc",
"rpc-client",
"rpc-client-ws",
"rpc-types",
"rpc-types-eth",
"signers",
"signer-keystore",
"signer-ledger",
"signer-local",
"signer-trezor",
] }
alloy-sol-macro = "0.8.15"
alloy-sol-types = "0.8.15"
base64 = "0.21"
cargo_metadata = "0.18"
chrono = "0.4"
clap = { version = "4.4", features = ["cargo", "string"] }
color-eyre = { version = "0.6", features = ["capture-spantrace"] }
dirs = "5.0"
fs-err = "2.11"
hex = "0.4"
kinode_process_lib = "0.10.1"
nix = { version = "0.27", features = ["process", "signal", "term"] }
proc-macro2 = "1.0"
regex = "1"
reqwest = { version = "0.12", features = ["json"] }
rpassword = "7"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10.8"
syn = { version = "2.0", features = ["full", "visit", "extra-traits"] }
#syn = { version = "2.0", features = ["full", "visit"] }
thiserror = "1.0"
tokio = { version = "1.28", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
] }
toml = "0.8"
toml_edit = "0.22"
tracing = "0.1"
tracing-appender = "0.2"
tracing-error = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "std"] }
walkdir = "2.4"
wit-bindgen = "0.36.0"
zip = "0.6"
[workspace]
members = []
exclude = ["src/new/templates/*"]
resolver = "2"
[[bin]]
name = "kit"
path = "src/main.rs"
[lib]