ok/jj
1
0
Fork 0
forked from mirrors/jj
jj/Cargo.toml

81 lines
2.1 KiB
TOML
Raw Normal View History

[package]
name = "jujutsu"
version = "0.6.1"
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
edition = "2021"
rust-version = "1.60" # Remember to update CI
2021-01-03 16:45:07 +00:00
license = "Apache-2.0"
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"
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"]
default-run = "jj"
[[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"
[[bench]]
name = "diff_bench"
harness = false
[workspace]
members = ["lib"]
[dependencies]
chrono = { version = "0.4.23", default-features = false, features = ["std", "clock"] }
clap = { version = "4.0.29", features = ["derive", "deprecated"] }
clap_complete = "4.0.6"
clap_mangen = "0.2.5"
config = { version = "0.13.3", default-features = false, features = ["toml"] }
2022-10-23 20:50:03 +00:00
crossterm = { version = "0.25", default-features = false }
dirs = "4.0.0"
git2 = "0.15.0"
glob = "0.3.0"
hex = "0.4.3"
itertools = "0.10.5"
jujutsu-lib = { version = "=0.6.1", path = "lib", default-features = false }
maplit = "1.0.2"
2022-11-21 01:37:46 +00:00
once_cell = "1.15.0"
pest = "2.5.1"
pest_derive = "2.5"
rand = "0.8.5"
regex = "1.7.0"
rpassword = "7.2.0"
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"
textwrap = "0.16.0"
timeago = { version = "0.3.1", default-features = false }
thiserror = "1.0.37"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", default-features = false, features = ["std", "ansi", "env-filter", "fmt"] }
2022-10-29 19:48:41 +00:00
[target.'cfg(unix)'.dependencies]
libc = { version = "0.2.138" }
2022-10-29 19:48:41 +00:00
[dev-dependencies]
assert_cmd = "2.0.7"
criterion = "0.4.0"
criterion_bencher_compat = "0.4.0"
2022-12-06 05:39:05 +00:00
insta = "1.22.0"
predicates = "2.1.4"
2022-11-21 01:37:46 +00:00
regex = "1.7.0"
test-case = "2.2.2"
testutils = { path = "lib/testutils" }
[features]
default = ["vendored-openssl", "jujutsu-lib/legacy-thrift"]
vendored-openssl = ["git2/vendored-openssl", "jujutsu-lib/vendored-openssl"]