2020-12-12 08:00:42 +00:00
|
|
|
[package]
|
2021-05-15 16:16:31 +00:00
|
|
|
name = "jujutsu"
|
2022-10-18 04:45:04 +00:00
|
|
|
version = "0.5.1"
|
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]
|
2022-11-14 17:37:48 +00:00
|
|
|
chrono = { version = "0.4.23", default-features = false, features = ["std", "clock"] }
|
2022-11-25 15:07:18 +00:00
|
|
|
clap = { version = "4.0.27", features = ["derive", "deprecated"] }
|
2022-11-25 16:14:27 +00:00
|
|
|
clap_complete = "4.0.6"
|
2022-11-25 15:07:00 +00:00
|
|
|
clap_mangen = "0.2.5"
|
2022-10-06 00:23:55 +00:00
|
|
|
config = { version = "0.13.2", default-features = false, features = ["toml"] }
|
2022-10-23 20:50:03 +00:00
|
|
|
crossterm = { version = "0.25", default-features = false }
|
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-09-20 16:55:05 +00:00
|
|
|
itertools = "0.10.5"
|
2022-10-18 04:45:04 +00:00
|
|
|
jujutsu-lib = { version = "=0.5.1", path = "lib"}
|
2022-10-29 19:48:41 +00:00
|
|
|
once_cell = "1.15.0"
|
2021-09-15 15:54:55 +00:00
|
|
|
maplit = "1.0.2"
|
2022-11-24 15:07:34 +00:00
|
|
|
pest = "2.5.0"
|
2022-11-25 15:07:08 +00:00
|
|
|
pest_derive = "2.5"
|
2022-03-17 04:53:28 +00:00
|
|
|
rand = "0.8.5"
|
2022-11-08 15:30:59 +00:00
|
|
|
regex = "1.7.0"
|
2022-11-06 18:15:44 +00:00
|
|
|
rpassword = "7.1.0"
|
2022-05-01 01:45:22 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-10-29 19:48:41 +00:00
|
|
|
slab = "0.4.7"
|
2022-02-10 06:19:16 +00:00
|
|
|
tempfile = "3.3.0"
|
2022-10-24 15:59:00 +00:00
|
|
|
textwrap = "0.16.0"
|
2022-11-26 01:33:24 +00:00
|
|
|
timeago = { version = "0.3.1", default-features = false }
|
2022-09-28 15:49:46 +00:00
|
|
|
thiserror = "1.0.37"
|
2022-11-20 03:38:25 +00:00
|
|
|
tracing = "0.1.37"
|
|
|
|
tracing-subscriber = { version = "0.3.16", default-features = false, features = ["std", "ansi", "env-filter", "fmt"] }
|
2020-12-12 08:00:42 +00:00
|
|
|
|
2022-10-29 19:48:41 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = { version = "0.2.137" }
|
|
|
|
|
2020-12-12 08:00:42 +00:00
|
|
|
[dev-dependencies]
|
2022-11-08 16:01:13 +00:00
|
|
|
assert_cmd = "2.0.6"
|
2022-09-12 15:59:06 +00:00
|
|
|
criterion = "0.4.0"
|
2022-09-12 15:45:21 +00:00
|
|
|
criterion_bencher_compat = "0.4.0"
|
2022-11-15 15:07:15 +00:00
|
|
|
insta = "1.21.1"
|
2022-11-08 15:30:59 +00:00
|
|
|
regex = "1.7.0"
|
2022-11-14 15:12:07 +00:00
|
|
|
predicates = "2.1.3"
|
2022-10-03 15:37:43 +00:00
|
|
|
test-case = "2.2.2"
|
2022-11-08 12:35:16 +00:00
|
|
|
testutils = { path = "lib/testutils" }
|
2022-03-13 07:03:44 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["vendored-openssl"]
|
|
|
|
vendored-openssl = ["git2/vendored-openssl", "jujutsu-lib/vendored-openssl"]
|