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

71 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "jujutsu"
version = "0.4.0"
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]
atty = "0.2.14"
chrono = { version = "0.4.20", default-features = false, features = ["std", "clock"] }
clap = { version = "3.2.17", features = ["derive"] }
clap_complete = "3.2.4"
2022-03-02 08:15:14 +00:00
clap_mangen = "0.1"
config = { version = "0.13.2", features = ["toml"] }
criterion = "0.3.6"
dirs = "4.0.0"
git2 = "0.15.0"
hex = "0.4.3"
2022-02-10 06:19:16 +00:00
itertools = "0.10.3"
jujutsu-lib = { version = "=0.4.0", path = "lib"}
maplit = "1.0.2"
pest = "2.3.0"
pest_derive = "2.3"
rand = "0.8.5"
regex = "1.6.0"
serde = { version = "1.0", features = ["derive"] }
2022-02-10 06:19:16 +00:00
tempfile = "3.3.0"
textwrap = "0.15.0"
thiserror = "1.0.32"
[dev-dependencies]
assert_cmd = "2.0.4"
criterion = "0.3.6"
criterion_bencher_compat = "0.3.4"
insta = "1.19.0"
regex = "1.6.0"
predicates = "2.1.1"
test-case = "2.2.1"
[features]
default = ["vendored-openssl"]
vendored-openssl = ["git2/vendored-openssl", "jujutsu-lib/vendored-openssl"]