[package]
edition = "2024"
name = "aleph-cli"
version = "0.8.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal CLI for Aleph Cloud, built in Rust."
homepage = "https://github.com/aleph-im/aleph-rs"
readme = false
license = "MIT"
repository = "https://github.com/aleph-im/aleph-rs"
resolver = "2"
[package.metadata.deb]
maintainer = "Aleph.im <contact@aleph.im>"
section = "utils"
priority = "optional"
assets = [[
"target/release/aleph",
"usr/bin/",
"755",
]]
[[bin]]
name = "aleph"
path = "src/main.rs"
[dependencies.aleph-sdk]
version = "0.8.2"
features = [
"account-evm",
"account-sol",
]
[dependencies.aleph-types]
version = "0.8.2"
features = ["account"]
[dependencies.anyhow]
version = "1.0.100"
[dependencies.bs58]
version = "0.5"
[dependencies.chrono]
version = "0.4.42"
[dependencies.clap]
version = "4.5.51"
features = ["derive"]
[dependencies.coins-ledger]
version = "0.13"
[dependencies.dialoguer]
version = "0.11"
[dependencies.directories]
version = "6"
[dependencies.ed25519-dalek]
version = "2"
features = [
"std",
"rand_core",
]
default-features = false
[dependencies.futures-util]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.k256]
version = "0.13"
features = [
"ecdsa",
"sha256",
]
[dependencies.memsizes]
version = "1.0.0"
features = ["serde"]
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.13.2"
features = [
"json",
"stream",
"multipart",
]
[dependencies.rpassword]
version = "7"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.48.0"
features = [
"rt",
"rt-multi-thread",
"macros",
"fs",
"sync",
]
[dependencies.toml]
version = "0.8"
[dependencies.url]
version = "2.5.7"
[dependencies.zeroize]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "linux")'.dependencies.keyring]
version = "3.6"
features = [
"async-secret-service",
"crypto-rust",
]
[target.'cfg(target_os = "macos")'.dependencies.keyring]
version = "3.6"
features = ["apple-native"]
[target.'cfg(target_os = "windows")'.dependencies.keyring]
version = "3.6"
features = ["windows-native"]