2020-12-12 08:00:42 +00:00
|
|
|
[package]
|
2021-05-15 16:16:31 +00:00
|
|
|
name = "jujutsu"
|
2022-04-03 05:56:59 +00:00
|
|
|
version = "0.4.0"
|
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"
|
2022-05-02 15:53:50 +00:00
|
|
|
rust-version = "1.60" # Remember to update CI
|
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"]
|
2022-04-26 17:50:29 +00:00
|
|
|
default-run = "jj"
|
2020-12-12 08:00:42 +00:00
|
|
|
|
2021-01-03 18:37:47 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "jj"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-04-09 22:53:32 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "fake-editor"
|
|
|
|
path = "testing/fake-editor.rs"
|
|
|
|
|
2022-04-01 06:44:28 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "fake-diff-editor"
|
|
|
|
path = "testing/fake-diff-editor.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]
|
2021-06-03 05:02:06 +00:00
|
|
|
atty = "0.2.14"
|
2022-08-22 18:28:34 +00:00
|
|
|
chrono = { version = "0.4.20", default-features = false, features = ["std", "clock"] }
|
2022-08-12 16:46:17 +00:00
|
|
|
clap = { version = "3.2.17", features = ["derive"] }
|
2022-08-12 17:01:16 +00:00
|
|
|
clap_complete = "3.2.4"
|
2022-03-02 08:15:14 +00:00
|
|
|
clap_mangen = "0.1"
|
2022-08-02 15:35:49 +00:00
|
|
|
config = { version = "0.13.2", features = ["toml"] }
|
2022-07-07 16:04:05 +00:00
|
|
|
criterion = "0.3.6"
|
2022-03-19 17:09:57 +00:00
|
|
|
dirs = "4.0.0"
|
2022-07-29 15:34:12 +00:00
|
|
|
git2 = "0.15.0"
|
2021-11-30 17:14:21 +00:00
|
|
|
hex = "0.4.3"
|
2022-02-10 06:19:16 +00:00
|
|
|
itertools = "0.10.3"
|
2022-04-03 05:56:59 +00:00
|
|
|
jujutsu-lib = { version = "=0.4.0", path = "lib"}
|
2021-09-15 15:54:55 +00:00
|
|
|
maplit = "1.0.2"
|
2022-08-22 18:23:26 +00:00
|
|
|
pest = "2.3.0"
|
|
|
|
pest_derive = "2.3"
|
2022-03-17 04:53:28 +00:00
|
|
|
rand = "0.8.5"
|
2022-07-06 15:33:53 +00:00
|
|
|
regex = "1.6.0"
|
2022-05-01 01:45:22 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-02-10 06:19:16 +00:00
|
|
|
tempfile = "3.3.0"
|
2022-03-17 04:09:53 +00:00
|
|
|
textwrap = "0.15.0"
|
2022-08-08 21:23:52 +00:00
|
|
|
thiserror = "1.0.32"
|
2020-12-12 08:00:42 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-04-29 21:06:23 +00:00
|
|
|
assert_cmd = "2.0.4"
|
2022-07-07 16:04:05 +00:00
|
|
|
criterion = "0.3.6"
|
2022-02-21 06:21:14 +00:00
|
|
|
criterion_bencher_compat = "0.3.4"
|
2022-08-22 15:35:21 +00:00
|
|
|
insta = "1.19.0"
|
2022-07-06 15:33:53 +00:00
|
|
|
regex = "1.6.0"
|
2022-01-16 06:06:12 +00:00
|
|
|
predicates = "2.1.1"
|
2022-07-22 15:32:39 +00:00
|
|
|
test-case = "2.2.1"
|
2022-03-13 07:03:44 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["vendored-openssl"]
|
|
|
|
vendored-openssl = ["git2/vendored-openssl", "jujutsu-lib/vendored-openssl"]
|