63 lines
1.8 KiB
TOML
63 lines
1.8 KiB
TOML
[package]
|
|
name = "radicle-cli"
|
|
description = "Radicle CLI"
|
|
homepage = "https://radicle.xyz"
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.13.0"
|
|
authors = ["cloudhead <cloudhead@radicle.xyz>"]
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
rust-version.workspace = true
|
|
|
|
[[bin]]
|
|
name = "rad"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
chrono = { workspace = true, features = ["clock", "std"] }
|
|
git-ref-format = { version = "0.3.0", features = ["macro"] }
|
|
lexopt = { workspace = true }
|
|
localtime = { workspace = true }
|
|
log = { workspace = true, features = ["std"] }
|
|
nonempty = { workspace = true }
|
|
radicle = { workspace = true, features = ["logger", "schemars"] }
|
|
radicle-cob = { workspace = true }
|
|
radicle-crypto = { workspace = true }
|
|
# N.b. this is required to use macros, even though it's re-exported
|
|
# through radicle
|
|
radicle-git-ext = { workspace = true, features = ["serde"] }
|
|
radicle-surf = "0.22.0"
|
|
radicle-term = { workspace = true }
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
shlex = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
timeago = { version = "0.4.2", default-features = false }
|
|
tree-sitter = "0.24.4"
|
|
tree-sitter-bash = "0.23.3"
|
|
tree-sitter-c = "0.23.2"
|
|
tree-sitter-css = "0.23.1"
|
|
tree-sitter-go = "0.23.4"
|
|
tree-sitter-highlight = "0.24.4"
|
|
tree-sitter-html = "0.23.2"
|
|
tree-sitter-json = "0.24.8"
|
|
tree-sitter-md = "0.3.2"
|
|
tree-sitter-python = "0.23.4"
|
|
tree-sitter-ruby = "0.23.1"
|
|
tree-sitter-rust = "0.23.2"
|
|
tree-sitter-toml-ng = "0.6.0"
|
|
tree-sitter-typescript = "0.23.2"
|
|
zeroize = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
radicle = { workspace = true, features = ["test"] }
|
|
radicle-cli-test = { workspace = true }
|
|
radicle-node = { workspace = true, features = ["test"] }
|
|
|
|
[lints]
|
|
workspace = true
|