39 lines
631 B
TOML
39 lines
631 B
TOML
[package]
|
|
name = "radicle-tools"
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.2.0"
|
|
authors = ["Alexis Sellier <alexis@radicle.xyz>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1" }
|
|
git-ref-format = { version = "0", features = ["serde", "macro"] }
|
|
|
|
[dependencies.radicle]
|
|
version = "0"
|
|
path = "../radicle"
|
|
|
|
[[bin]]
|
|
name = "rad-init"
|
|
path = "src/rad-init.rs"
|
|
|
|
[[bin]]
|
|
name = "rad-auth"
|
|
path = "src/rad-auth.rs"
|
|
|
|
[[bin]]
|
|
name = "rad-self"
|
|
path = "src/rad-self.rs"
|
|
|
|
[[bin]]
|
|
name = "rad-push"
|
|
path = "src/rad-push.rs"
|
|
|
|
[[bin]]
|
|
name = "rad-agent"
|
|
path = "src/rad-agent.rs"
|
|
|
|
[[bin]]
|
|
name = "rad-clone"
|
|
path = "src/rad-clone.rs"
|