2020-12-12 08:00:42 +00:00
|
|
|
[package]
|
2021-05-15 16:16:31 +00:00
|
|
|
name = "jujutsu"
|
2022-03-16 19:05:39 +00:00
|
|
|
version = "0.3.3"
|
2020-12-12 08:00:42 +00:00
|
|
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
2021-12-14 05:38:10 +00:00
|
|
|
edition = "2021"
|
2021-01-03 16:45:07 +00:00
|
|
|
license = "Apache-2.0"
|
2021-05-15 16:16:31 +00:00
|
|
|
description = "Jujutsu (an experimental VCS)"
|
2021-01-03 16:45:07 +00:00
|
|
|
homepage = "https://github.com/martinvonz/jj"
|
|
|
|
repository = "https://github.com/martinvonz/jj"
|
2021-05-15 16:16:31 +00:00
|
|
|
documentation = "https://docs.rs/jujutsu"
|
2021-01-03 16:45:07 +00:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["VCS", "DVCS", "SCM", "Git", "Mercurial"]
|
|
|
|
categories = ["command-line-utilities", "development-tools"]
|
2020-12-12 08:00:42 +00:00
|
|
|
|
2021-01-03 18:37:47 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "jj"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-02-21 06:21:14 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "diff_bench"
|
|
|
|
harness = false
|
|
|
|
|
2021-01-03 16:45:07 +00:00
|
|
|
[workspace]
|
|
|
|
members = ["lib"]
|
|
|
|
|
2020-12-12 08:00:42 +00:00
|
|
|
[dependencies]
|
2022-01-16 06:06:12 +00:00
|
|
|
assert_cmd = "2.0.4"
|
2021-06-03 05:02:06 +00:00
|
|
|
atty = "0.2.14"
|
2020-12-24 04:55:12 +00:00
|
|
|
chrono = "0.4.19"
|
2022-04-01 15:27:09 +00:00
|
|
|
clap = { version = "3.1.8", features = ["derive"] }
|
2022-03-17 04:10:05 +00:00
|
|
|
clap_complete = "3.1.1"
|
2022-03-02 08:15:14 +00:00
|
|
|
clap_mangen = "0.1"
|
2022-03-10 02:04:19 +00:00
|
|
|
config = "0.12.0"
|
2021-11-30 17:14:21 +00:00
|
|
|
criterion = "0.3.5"
|
2022-03-19 17:09:57 +00:00
|
|
|
dirs = "4.0.0"
|
2022-03-13 07:03:44 +00:00
|
|
|
git2 = "0.14.2"
|
2021-11-30 17:14:21 +00:00
|
|
|
hex = "0.4.3"
|
2022-03-17 04:10:19 +00:00
|
|
|
indoc = "1.0.4"
|
2022-03-28 15:37:38 +00:00
|
|
|
insta = "1.14.0"
|
2022-02-10 06:19:16 +00:00
|
|
|
itertools = "0.10.3"
|
2022-03-16 19:05:39 +00:00
|
|
|
jujutsu-lib = { version = "=0.3.3", path = "lib"}
|
2021-09-15 15:54:55 +00:00
|
|
|
maplit = "1.0.2"
|
2020-12-24 04:55:12 +00:00
|
|
|
pest = "2.1.3"
|
|
|
|
pest_derive = "2.1.0"
|
2022-03-03 00:23:30 +00:00
|
|
|
predicates = "2.1.1"
|
2022-03-17 04:53:28 +00:00
|
|
|
rand = "0.8.5"
|
2022-03-17 05:28:54 +00:00
|
|
|
regex = "1.5.5"
|
2022-02-10 06:19:16 +00:00
|
|
|
tempfile = "3.3.0"
|
2022-03-17 04:09:53 +00:00
|
|
|
textwrap = "0.15.0"
|
2021-11-30 17:14:21 +00:00
|
|
|
thiserror = "1.0.30"
|
2020-12-12 08:00:42 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-28 15:37:45 +00:00
|
|
|
test-case = "2.0.2"
|
2022-03-17 05:28:54 +00:00
|
|
|
regex = "1.5.5"
|
2022-02-21 06:21:14 +00:00
|
|
|
criterion = "0.3.5"
|
|
|
|
criterion_bencher_compat = "0.3.4"
|
2022-01-16 06:06:12 +00:00
|
|
|
predicates = "2.1.1"
|
2022-03-13 07:03:44 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["vendored-openssl"]
|
|
|
|
vendored-openssl = ["git2/vendored-openssl", "jujutsu-lib/vendored-openssl"]
|