2020-12-12 11:00:42 +03:00
|
|
|
[package]
|
2021-05-15 19:16:31 +03:00
|
|
|
name = "jujutsu"
|
2021-05-15 20:28:40 +03:00
|
|
|
version = "0.2.0"
|
2020-12-12 11:00:42 +03:00
|
|
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
2021-12-14 08:38:10 +03:00
|
|
|
edition = "2021"
|
2021-01-03 19:45:07 +03:00
|
|
|
license = "Apache-2.0"
|
2021-05-15 19:16:31 +03:00
|
|
|
description = "Jujutsu (an experimental VCS)"
|
2021-01-03 19:45:07 +03:00
|
|
|
homepage = "https://github.com/martinvonz/jj"
|
|
|
|
repository = "https://github.com/martinvonz/jj"
|
2021-05-15 19:16:31 +03:00
|
|
|
documentation = "https://docs.rs/jujutsu"
|
2021-01-03 19:45:07 +03:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["VCS", "DVCS", "SCM", "Git", "Mercurial"]
|
|
|
|
categories = ["command-line-utilities", "development-tools"]
|
2020-12-12 11:00:42 +03:00
|
|
|
|
2021-01-03 21:37:47 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "jj"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-02-21 09:21:14 +03:00
|
|
|
[[bench]]
|
|
|
|
name = "diff_bench"
|
|
|
|
harness = false
|
|
|
|
|
2021-01-03 19:45:07 +03:00
|
|
|
[workspace]
|
|
|
|
members = ["lib"]
|
|
|
|
|
2020-12-12 11:00:42 +03:00
|
|
|
[dependencies]
|
2021-06-03 08:02:06 +03:00
|
|
|
atty = "0.2.14"
|
2020-12-24 07:55:12 +03:00
|
|
|
chrono = "0.4.19"
|
2022-02-20 11:25:40 +03:00
|
|
|
clap = { version = "3.1.0", features = ["cargo"] }
|
|
|
|
clap_complete = "3.1.0"
|
2021-11-30 20:14:21 +03:00
|
|
|
config = "0.11.0"
|
|
|
|
criterion = "0.3.5"
|
2022-02-10 09:19:16 +03:00
|
|
|
git2 = "0.13.25"
|
2021-11-30 20:14:21 +03:00
|
|
|
hex = "0.4.3"
|
2020-12-24 07:55:12 +03:00
|
|
|
indoc = "1.0.3"
|
2022-02-10 09:19:16 +03:00
|
|
|
itertools = "0.10.3"
|
2021-05-15 20:28:40 +03:00
|
|
|
jujutsu-lib = { version = "=0.2.0", path = "lib"}
|
2021-09-15 18:54:55 +03:00
|
|
|
maplit = "1.0.2"
|
2020-12-24 07:55:12 +03:00
|
|
|
pest = "2.1.3"
|
|
|
|
pest_derive = "2.1.0"
|
2021-11-30 20:14:21 +03:00
|
|
|
rand = "0.8.4"
|
2022-02-10 09:19:16 +03:00
|
|
|
tempfile = "3.3.0"
|
2021-09-02 19:06:34 +03:00
|
|
|
textwrap = "0.14.2"
|
2021-11-30 20:14:21 +03:00
|
|
|
thiserror = "1.0.30"
|
2020-12-12 11:00:42 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-10 09:19:16 +03:00
|
|
|
test-case = "1.2.3"
|
2021-11-30 20:14:21 +03:00
|
|
|
regex = "1.5.4"
|
2022-02-21 09:21:14 +03:00
|
|
|
criterion = "0.3.5"
|
|
|
|
criterion_bencher_compat = "0.3.4"
|