mirror of
https://github.com/fluencelabs/aquavm
synced 2025-03-16 21:10:48 +00:00
51 lines
1.9 KiB
TOML
51 lines
1.9 KiB
TOML
[package]
|
|
name = "aquavm-air-cli"
|
|
version = "0.5.4"
|
|
edition = "2021"
|
|
description = "AIR execution and printing tool"
|
|
authors = ["Fluence Labs"]
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/fluencelabs/aquavm"
|
|
documentation = "https://docs.rs/aquavm-air-cli"
|
|
keywords = ["fluence", "air", "tracing"]
|
|
|
|
[dependencies]
|
|
aquavm-air = { version = "0.55.0", path = "../../../air" }
|
|
air-beautifier = { version = "0.4.0", path = "../../../crates/beautifier" }
|
|
avm-data-store = { version = "0.7.3", path = "../../../crates/data-store" }
|
|
avm-interface = { version = "0.29.3", path = "../../../avm/interface" }
|
|
air-interpreter-interface = { version = "0.15.2", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
|
|
air-interpreter-sede = { version = "0.1.0", path = "../../../crates/air-lib/interpreter-sede", default-features = false }
|
|
air-test-utils = { version = "0.13.0",path = "../../../crates/air-lib/test-utils", optional = true }
|
|
|
|
anyhow = "1.0.75"
|
|
clap = { version = "4.4.7", features = ["derive", "env"] }
|
|
itertools = "0.10.5"
|
|
serde = { version = "1.0.190", features = ["derive"] }
|
|
serde_json = "1.0.108"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.17", default-features = false, features = [ "env-filter", "json", "smallvec", "time", "fmt" ] }
|
|
atty = "0.2.14"
|
|
termcolor = "1.2.0"
|
|
fluence-keypair = "0.10.3"
|
|
bs58 = "0.5.0"
|
|
zeroize = "1.6.0"
|
|
|
|
# near
|
|
# alpha version is used because older versions depend on
|
|
# the parity-secp256k1 crate which is yanked
|
|
near-sdk = { version = "5.0.0-alpha.1", optional = true }
|
|
tokio = { version = "1", features = ["rt"], optional = true }
|
|
workspaces = { version = "0.7.0", optional = true }
|
|
|
|
[features]
|
|
default = ["wasm"]
|
|
wasm = ["air-test-utils"]
|
|
gen_signatures = ["aquavm-air/gen_signatures"]
|
|
check_signatures = ["aquavm-air/check_signatures"]
|
|
near = [ "dep:near-sdk", "dep:tokio", "dep:workspaces" ]
|
|
|
|
[[bin]]
|
|
name = "air"
|
|
path = "src/main.rs"
|