2020-12-12 08:00:42 +00:00
|
|
|
[package]
|
2021-05-15 16:16:31 +00:00
|
|
|
name = "jujutsu"
|
2023-02-16 17:26:40 +00:00
|
|
|
version = "0.7.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"
|
2023-03-17 22:42:55 +00:00
|
|
|
rust-version = "1.64" # Remember to update CI, contributing.md, and flake.nix
|
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"
|
|
|
|
|
2021-01-03 16:45:07 +00:00
|
|
|
[workspace]
|
2022-12-21 19:14:46 +00:00
|
|
|
members = ["lib", "lib/testutils", "lib/gen-protos"]
|
2021-01-03 16:45:07 +00:00
|
|
|
|
2020-12-12 08:00:42 +00:00
|
|
|
[dependencies]
|
2023-03-13 16:03:13 +00:00
|
|
|
chrono = { version = "0.4.24", default-features = false, features = ["std", "clock"] }
|
2023-03-17 23:14:20 +00:00
|
|
|
clap = { version = "4.1.9", features = ["derive", "deprecated"] }
|
2023-03-30 16:28:41 +00:00
|
|
|
clap_complete = "4.2.0"
|
2023-03-17 23:14:20 +00:00
|
|
|
clap_mangen = "0.2.10"
|
2022-12-05 15:15:29 +00:00
|
|
|
config = { version = "0.13.3", default-features = false, features = ["toml"] }
|
2023-03-27 15:23:53 +00:00
|
|
|
criterion = {version = "0.4.0", optional = true }
|
2023-01-30 15:19:25 +00:00
|
|
|
crossterm = { version = "0.26", default-features = false }
|
2022-03-19 17:09:57 +00:00
|
|
|
dirs = "4.0.0"
|
2023-01-27 06:33:24 +00:00
|
|
|
esl01-renderdag = "0.3.0"
|
2023-03-27 08:18:20 +00:00
|
|
|
git2 = "0.16.1"
|
2023-01-06 15:05:36 +00:00
|
|
|
glob = "0.3.1"
|
2021-11-30 17:14:21 +00:00
|
|
|
hex = "0.4.3"
|
2023-03-27 16:04:45 +00:00
|
|
|
indexmap = "1.9.3"
|
2022-09-20 16:55:05 +00:00
|
|
|
itertools = "0.10.5"
|
2023-02-16 17:26:40 +00:00
|
|
|
jujutsu-lib = { version = "=0.7.0", path = "lib", default-features = false }
|
2021-09-15 15:54:55 +00:00
|
|
|
maplit = "1.0.2"
|
2023-02-14 16:12:18 +00:00
|
|
|
once_cell = "1.17.1"
|
2023-03-06 16:13:36 +00:00
|
|
|
pest = "2.5.6"
|
2022-11-25 15:07:08 +00:00
|
|
|
pest_derive = "2.5"
|
2023-03-27 16:04:57 +00:00
|
|
|
regex = "1.7.3"
|
2022-11-28 15:09:27 +00:00
|
|
|
rpassword = "7.2.0"
|
2022-05-01 01:45:22 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-02-20 16:09:14 +00:00
|
|
|
slab = "0.4.8"
|
2023-03-23 09:03:01 +00:00
|
|
|
strsim = "0.10.0"
|
2023-03-30 16:26:08 +00:00
|
|
|
tempfile = "3.5.0"
|
2022-10-24 15:59:00 +00:00
|
|
|
textwrap = "0.16.0"
|
2023-03-20 20:20:59 +00:00
|
|
|
thiserror = "1.0.40"
|
2023-03-27 08:18:20 +00:00
|
|
|
timeago = { version = "0.4.1", default-features = false }
|
|
|
|
toml_edit = { version = "0.19.8", features = ["serde"] }
|
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]
|
2023-03-09 15:12:26 +00:00
|
|
|
libc = { version = "0.2.140" }
|
2022-10-29 19:48:41 +00:00
|
|
|
|
2020-12-12 08:00:42 +00:00
|
|
|
[dev-dependencies]
|
2023-01-10 15:50:12 +00:00
|
|
|
assert_cmd = "2.0.8"
|
2023-03-03 06:48:35 +00:00
|
|
|
assert_matches = "1.5.0"
|
2023-03-23 16:04:56 +00:00
|
|
|
insta = { version = "1.29.0", features = ["filters"] }
|
2023-03-27 16:04:57 +00:00
|
|
|
regex = "1.7.3"
|
2022-11-08 12:35:16 +00:00
|
|
|
testutils = { path = "lib/testutils" }
|
2022-03-13 07:03:44 +00:00
|
|
|
|
|
|
|
[features]
|
2023-01-03 23:40:03 +00:00
|
|
|
default = ["jujutsu-lib/legacy-thrift"]
|
2023-03-27 15:23:53 +00:00
|
|
|
bench = ["criterion"]
|
2022-03-13 07:03:44 +00:00
|
|
|
vendored-openssl = ["git2/vendored-openssl", "jujutsu-lib/vendored-openssl"]
|