This repository was archived by the owner on Jul 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (48 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
49 lines (48 loc) · 1.31 KB
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
[package]
name = "arch-cli"
version = "0.1.7"
edition = "2021"
include = [
"src/**/*",
"templates/**/*",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
description = "Arch Network CLI - A tool for managing Arch Network applications"
authors = ["Arch Network <brian@arch.network>"]
license = "MIT"
repository = "https://github.com/Arch-Network/arch-cli"
[dependencies]
clap = { version = "3.2", features = ["derive"] }
anyhow = "1.0.78"
bitcoin = "0.32.4"
bip322 = { path = "./templates/bip322" }
tokio = { version = "1.x", features = ["rt-multi-thread", "macros", "process"] }
hex = { version = "0.4.3", default-features = false }
memoffset = "0.9.1"
rustversion = "1.0.17"
serde = { version = "1.0.162", default-features = false, features = ["derive"] }
thiserror = "1.0.42"
borsh = { version = "1.4.0", features = ["derive"] }
secp256k1 = { version = "0.29.1", features = ["global-context", "rand-std"] }
common = { path = "./templates/common" }
bitcoincore-rpc = "0.19.0"
colored = "2.0"
config = "0.13"
arch_program = { path = "./templates/program" }
dotenv = "0.15.0"
reqwest = "0.12.5"
webbrowser = "1.0.2"
dirs = "5.0.1"
serde_json = "1.0.102"
rand = "0.8"
shellexpand = "3.1.0"
toml_edit = "0.22.22"
toml = "0.8.19"
dialoguer = "0.10.4"
indicatif = "0.17.7"
include_dir = "0.7.3"
regex = "1.11.1"
tempfile = "3.14.0"