mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-24 15:18:53 +00:00
fa73b17c66
With this commit, you can run `jj concepts branches` to get help about the "branches" concept. We don't have much help for other commands and their arguments yet, but I'm starting with concept guides so we can point to them as we add help for commands and their arguments. I initially tried to make the command to get help be `jj help --concept branches`. That would require replacing clap's implementation of the help command with our own. clap-rs/clap#1350 prevented me from doing that. But I'm pretty happy with having it under `jj concepts` anyway. It's probably more discoverable that way. I tried to mimic clap's styling with yellow headings.
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[package]
|
|
name = "jujutsu"
|
|
version = "0.2.0"
|
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
description = "Jujutsu (an experimental VCS)"
|
|
homepage = "https://github.com/martinvonz/jj"
|
|
repository = "https://github.com/martinvonz/jj"
|
|
documentation = "https://docs.rs/jujutsu"
|
|
readme = "README.md"
|
|
keywords = ["VCS", "DVCS", "SCM", "Git", "Mercurial"]
|
|
categories = ["command-line-utilities", "development-tools"]
|
|
|
|
[[bin]]
|
|
name = "jj"
|
|
path = "src/main.rs"
|
|
|
|
[workspace]
|
|
members = ["lib"]
|
|
|
|
[dependencies]
|
|
blake2 = "0.9.1"
|
|
bytes = "1.0.0"
|
|
chrono = "0.4.19"
|
|
clap = "2.33.3"
|
|
config = "0.10.1"
|
|
criterion = "0.3.3"
|
|
dirs = "3.0.1"
|
|
git2 = "0.13.14"
|
|
hex = "0.4.2"
|
|
indoc = "1.0.3"
|
|
itertools = "0.10.1"
|
|
jujutsu-lib = { version = "=0.2.0", path = "lib"}
|
|
pest = "2.1.3"
|
|
pest_derive = "2.1.0"
|
|
protobuf = { version = "2.22.1", features = ["with-bytes"] }
|
|
protobuf-codegen-pure = "2.22.1"
|
|
rand = "0.8.0"
|
|
serde_json = "1.0.60"
|
|
tempfile = "3.1.0"
|
|
textwrap = "0.14.2"
|
|
thiserror = "1.0.22"
|
|
uuid = { version = "0.8.1", features = ["v4"] }
|
|
zstd = "0.6.0"
|
|
|
|
[dev-dependencies]
|
|
test-case = "1.2.0"
|
|
regex = "1.4.2"
|