2020-12-12 08:00:42 +00:00
|
|
|
[package]
|
2023-06-28 14:12:40 +00:00
|
|
|
name = "jj-lib"
|
2023-07-09 04:41:55 +00:00
|
|
|
version = "0.8.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-07-11 13:08:13 +00:00
|
|
|
rust-version = "1.71"
|
2021-01-03 16:45:07 +00:00
|
|
|
license = "Apache-2.0"
|
2021-05-15 16:16:31 +00:00
|
|
|
description = "Library for Jujutsu (an experimental VCS)"
|
2021-01-03 16:45:07 +00:00
|
|
|
homepage = "https://github.com/martinvonz/jj"
|
|
|
|
repository = "https://github.com/martinvonz/jj"
|
2023-06-28 14:12:40 +00:00
|
|
|
documentation = "https://docs.rs/jj-lib"
|
2021-01-03 16:45:07 +00:00
|
|
|
readme = "../README.md"
|
2020-12-12 08:00:42 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-03-27 08:23:27 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "diff_bench"
|
|
|
|
harness = false
|
|
|
|
|
2020-12-24 07:12:18 +00:00
|
|
|
[build-dependencies]
|
2023-08-05 16:14:11 +00:00
|
|
|
version_check.workspace = true
|
2020-12-12 08:00:42 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-08-05 16:14:11 +00:00
|
|
|
backoff.workspace = true
|
|
|
|
blake2.workspace = true
|
|
|
|
byteorder.workspace = true
|
|
|
|
bytes.workspace = true
|
|
|
|
chrono.workspace = true
|
|
|
|
config.workspace = true
|
|
|
|
digest.workspace = true
|
|
|
|
git2.workspace = true
|
|
|
|
hex.workspace = true
|
|
|
|
itertools.workspace = true
|
|
|
|
maplit.workspace = true
|
|
|
|
once_cell.workspace = true
|
|
|
|
pest.workspace = true
|
|
|
|
pest_derive.workspace = true
|
|
|
|
prost.workspace = true
|
|
|
|
rand.workspace = true
|
|
|
|
rand_chacha.workspace = true
|
|
|
|
rayon.workspace = true
|
|
|
|
regex.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
smallvec.workspace = true
|
|
|
|
strsim.workspace = true
|
|
|
|
tempfile.workspace = true
|
|
|
|
thiserror.workspace = true
|
|
|
|
tokio = { workspace = true, optional = true }
|
|
|
|
tracing.workspace = true
|
|
|
|
watchman_client = { workspace = true, optional = true }
|
|
|
|
whoami.workspace = true
|
|
|
|
zstd.workspace = true
|
2020-12-12 08:00:42 +00:00
|
|
|
|
2023-05-06 01:54:33 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2023-08-05 16:14:11 +00:00
|
|
|
rustix.workspace = true
|
2023-05-06 01:54:33 +00:00
|
|
|
|
2020-12-12 08:00:42 +00:00
|
|
|
[dev-dependencies]
|
2023-08-05 16:14:11 +00:00
|
|
|
assert_matches.workspace = true
|
|
|
|
criterion.workspace = true
|
|
|
|
esl01-renderdag.workspace = true
|
|
|
|
insta.workspace = true
|
|
|
|
num_cpus.workspace = true
|
|
|
|
test-case.workspace = true
|
|
|
|
testutils.workspace = true
|
2022-03-13 07:03:44 +00:00
|
|
|
|
|
|
|
[features]
|
2023-03-29 18:13:28 +00:00
|
|
|
default = []
|
2022-03-13 07:03:44 +00:00
|
|
|
vendored-openssl = ["git2/vendored-openssl"]
|
2023-07-08 09:23:32 +00:00
|
|
|
watchman = ["dep:tokio", "dep:watchman_client"]
|