2020-12-12 08:00:42 +00:00
|
|
|
[package]
|
2021-05-15 16:16:31 +00:00
|
|
|
name = "jujutsu"
|
2021-05-15 17:28:40 +00:00
|
|
|
version = "0.2.0"
|
2020-12-12 08:00:42 +00:00
|
|
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
|
|
|
edition = "2018"
|
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"
|
|
|
|
|
2021-01-03 16:45:07 +00:00
|
|
|
[workspace]
|
|
|
|
members = ["lib"]
|
|
|
|
|
2020-12-12 08:00:42 +00:00
|
|
|
[dependencies]
|
2021-11-30 17:14:21 +00:00
|
|
|
blake2 = "0.9.2"
|
|
|
|
bytes = "1.1.0"
|
2020-12-24 04:55:12 +00:00
|
|
|
chrono = "0.4.19"
|
2021-11-30 17:14:21 +00:00
|
|
|
clap = "2.34.0"
|
|
|
|
config = "0.11.0"
|
|
|
|
criterion = "0.3.5"
|
|
|
|
dirs = "4.0.0"
|
|
|
|
git2 = "0.13.24"
|
|
|
|
hex = "0.4.3"
|
2020-12-24 04:55:12 +00:00
|
|
|
indoc = "1.0.3"
|
2021-06-09 20:57:48 +00:00
|
|
|
itertools = "0.10.1"
|
2021-05-15 17:28:40 +00:00
|
|
|
jujutsu-lib = { version = "=0.2.0", 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"
|
2021-11-30 17:14:21 +00:00
|
|
|
protobuf = { version = "2.25.2", features = ["with-bytes"] }
|
|
|
|
protobuf-codegen-pure = "2.25.2"
|
|
|
|
rand = "0.8.4"
|
|
|
|
serde_json = "1.0.72"
|
|
|
|
tempfile = "3.2.0"
|
2021-09-02 16:06:34 +00:00
|
|
|
textwrap = "0.14.2"
|
2021-11-30 17:14:21 +00:00
|
|
|
thiserror = "1.0.30"
|
|
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|
|
|
|
zstd = "0.9.0"
|
2020-12-12 08:00:42 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-30 17:14:21 +00:00
|
|
|
test-case = "1.2.1"
|
|
|
|
regex = "1.5.4"
|