74 lines
2.1 KiB
TOML
74 lines
2.1 KiB
TOML
[package]
|
|
name = "radicle-cli"
|
|
description = "Radicle CLI"
|
|
homepage = "https://radicle.xyz"
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.10.0"
|
|
authors = ["cloudhead <cloudhead@radicle.xyz>"]
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
[[bin]]
|
|
name = "rad"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1" }
|
|
chrono = { version = "0.4.26", default-features = false, features = ["clock", "std"] }
|
|
git-ref-format = { version = "0.3.0", features = ["macro"] }
|
|
lexopt = { version = "0.3.0" }
|
|
localtime = { version = "1.2.0" }
|
|
log = { version = "0.4", features = ["std"] }
|
|
nonempty = { version = "0.9.0" }
|
|
# N.b. this is required to use macros, even though it's re-exported
|
|
# through radicle
|
|
radicle-git-ext = { version = "0.7.0", features = ["serde"] }
|
|
radicle-surf = { version = "0.21.0" }
|
|
serde = { version = "1.0" }
|
|
serde_json = { version = "1" }
|
|
shlex = { version = "1.1.0" }
|
|
tempfile = { version = "3.3.0" }
|
|
thiserror = { version = "1" }
|
|
timeago = { version = "0.4.2", default-features = false }
|
|
tree-sitter = { version = "0.20.0" }
|
|
tree-sitter-highlight = { version = "0.20" }
|
|
tree-sitter-json = { version = "0.20.1" }
|
|
tree-sitter-rust = { version = "0.20" }
|
|
tree-sitter-typescript = { version = "0.20.3" }
|
|
tree-sitter-html = { version = "0.20" }
|
|
tree-sitter-css = { version = "0.20" }
|
|
tree-sitter-toml = { version = "0.20" }
|
|
tree-sitter-c = { version = "0.20" }
|
|
tree-sitter-python = { version = "0.20" }
|
|
tree-sitter-ruby = { version = "0.20" }
|
|
tree-sitter-bash = { version = "0.20" }
|
|
tree-sitter-go = { version = "0.20.0" }
|
|
tree-sitter-md = { version = "0.1.5" }
|
|
zeroize = { version = "1.1" }
|
|
|
|
[dependencies.radicle]
|
|
version = "0.11.0"
|
|
path = "../radicle"
|
|
features = ["logger"]
|
|
|
|
[dependencies.radicle-cli-test]
|
|
version = "0.10.0"
|
|
path = "../radicle-cli-test"
|
|
|
|
[dependencies.radicle-cob]
|
|
version = "0.11.0"
|
|
path = "../radicle-cob"
|
|
|
|
[dependencies.radicle-crypto]
|
|
version = "0.10.0"
|
|
path = "../radicle-crypto"
|
|
|
|
[dependencies.radicle-term]
|
|
version = "0"
|
|
path = "../radicle-term"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { version = "1.3.0" }
|
|
radicle = { version = "0.11.0", path = "../radicle", features = ["test"] }
|
|
radicle-node = { path = "../radicle-node", features = ["test"] }
|