2020-12-12 08:00:42 +00:00
|
|
|
[package]
|
2023-06-28 14:12:40 +00:00
|
|
|
name = "jj-lib"
|
2023-08-05 22:14:11 +00:00
|
|
|
description = "Library for Jujutsu - an experimental version control system"
|
2020-12-12 08:00:42 +00:00
|
|
|
|
2023-08-05 22:14:11 +00:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
documentation.workspace = true
|
|
|
|
readme.workspace = true
|
2020-12-12 08:00:42 +00:00
|
|
|
|
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"]
|