-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (40 loc) · 1.21 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
[package]
name = "gvltctl"
version = "0.1.3"
edition = "2021"
authors = ["Gevulot Team"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/gevulotnetwork/gvltctl"
description = "Gevulot Control CLI"
[dependencies]
gevulot-rs = "0.1.3"
bip32 = "0.5.1"
cargo_metadata = "0.19"
clap = { version = "4", features = ["derive", "env", "string"] }
clap_complete = "4.5.13"
cosmrs = "0.20"
env_logger = "0.11.5"
patharg = "0.4"
rand_core = "0.6.4"
shadow-rs = { version = "0.36", features = ["metadata"] }
serde = "1"
serde_json = "1"
serde_yaml = "0.9.34"
tokio = { version = "1", features = ["full"] }
toml = "0.8.19"
openssl = { version = "*", optional = true }
# Linux VM builder dependencies
mia-installer = { git = "https://github.com/gevulotnetwork/mia.git", tag = "mia-installer-0.2.5" }
anyhow = "1"
log = "0.4.22"
num_cpus = "1.16.0"
oci-spec = "0.7.0"
tempdir = "0.3.7"
thiserror = "1"
[build-dependencies]
shadow-rs = { version = "0.36", features = ["metadata"] }
[features]
# This feature should be enabled when building static executable
openssl-vendored = ["openssl/vendored"]
[patch.crates-io]
gevulot-rs = { git = "https://github.com/gevulotnetwork/gevulot-rs", rev = "9aad7a9cbea15e9007ff5b45a566212bdf853620" }