123456789101112131415161718192021222324 |
- [package]
- name = "bolt-cli"
- version = "0.0.1"
- authors = ["Magicblock Labs <dev@magicblock.gg>"]
- rust-version = "1.60"
- edition = "2021"
- repository = "https://github.com/magicblock-labs/bolt"
- description = "Bolt CLI"
- license = "MIT"
- [[bin]]
- name = "bolt"
- path = "src/bin/main.rs"
- [features]
- dev = []
- [dependencies]
- anchor-cli = { git = "https://github.com/coral-xyz/anchor.git" }
- anchor-client = { git = "https://github.com/coral-xyz/anchor.git" }
- anyhow = "1.0.32"
- heck = "0.4.0"
- clap = { version = "4.2.4", features = ["derive"] }
- syn = { version = "1.0.60", features = ["full", "extra-traits"] }
|