2020-12-12 08:00:42 +00:00
|
|
|
[package]
|
2023-06-28 14:12:40 +00:00
|
|
|
name = "jj-lib"
|
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"
|
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]
|
2022-02-21 06:14:13 +00:00
|
|
|
version_check = "0.9.4"
|
2020-12-12 08:00:42 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-10 06:15:38 +00:00
|
|
|
backoff = "0.4.0"
|
2022-12-19 15:12:08 +00:00
|
|
|
blake2 = "0.10.6"
|
2021-11-30 17:14:21 +00:00
|
|
|
byteorder = "1.4.3"
|
2023-03-27 08:18:20 +00:00
|
|
|
bytes = "1.4.0"
|
2023-07-08 09:23:32 +00:00
|
|
|
chrono = { version = "0.4.26", default-features = false, features = [
|
|
|
|
"std",
|
|
|
|
"clock",
|
|
|
|
] }
|
2022-12-05 15:15:29 +00:00
|
|
|
config = { version = "0.13.3", default-features = false, features = ["toml"] }
|
2023-05-22 16:00:45 +00:00
|
|
|
digest = "0.10.7"
|
2023-05-29 16:10:30 +00:00
|
|
|
git2 = "0.17.2"
|
2021-11-30 17:14:21 +00:00
|
|
|
hex = "0.4.3"
|
2023-06-22 15:58:45 +00:00
|
|
|
itertools = "0.11.0"
|
2020-12-23 17:39:09 +00:00
|
|
|
maplit = "1.0.2"
|
2023-06-05 16:11:58 +00:00
|
|
|
once_cell = "1.18.0"
|
2023-06-22 04:56:45 +00:00
|
|
|
pest = "2.7.0"
|
|
|
|
pest_derive = "2.7.0"
|
2023-04-13 16:10:07 +00:00
|
|
|
prost = "0.11.9"
|
2022-12-30 03:59:01 +00:00
|
|
|
rand = "0.8.5"
|
|
|
|
rand_chacha = "0.3.1"
|
2023-07-10 15:27:53 +00:00
|
|
|
regex = "1.9.1"
|
2023-07-05 15:46:12 +00:00
|
|
|
serde_json = "1.0.100"
|
2023-07-08 09:23:32 +00:00
|
|
|
smallvec = { version = "1.11.0", features = [
|
|
|
|
"const_generics",
|
|
|
|
"const_new",
|
|
|
|
"union",
|
|
|
|
] }
|
2023-06-05 04:55:59 +00:00
|
|
|
strsim = "0.10.0"
|
2023-06-07 15:59:23 +00:00
|
|
|
tempfile = "3.6.0"
|
2023-07-07 15:38:12 +00:00
|
|
|
thiserror = "1.0.43"
|
2023-07-10 15:27:53 +00:00
|
|
|
tokio = { version = "1.29.1", optional = true }
|
2023-04-30 05:35:41 +00:00
|
|
|
tracing = "0.1.37"
|
2023-07-08 09:23:32 +00:00
|
|
|
watchman_client = { version = "0.8.0", optional = true }
|
2023-06-26 16:01:21 +00:00
|
|
|
whoami = "1.4.1"
|
2023-01-31 15:09:17 +00:00
|
|
|
zstd = "0.12.3"
|
2020-12-12 08:00:42 +00:00
|
|
|
|
2023-05-06 01:54:33 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2023-07-11 15:46:58 +00:00
|
|
|
rustix = { version = "0.38.4", features = ["fs"] }
|
2023-05-06 01:54:33 +00:00
|
|
|
|
2020-12-12 08:00:42 +00:00
|
|
|
[dev-dependencies]
|
2022-02-21 05:45:09 +00:00
|
|
|
assert_matches = "1.5.0"
|
2023-06-01 16:02:28 +00:00
|
|
|
criterion = "0.5.1"
|
2023-06-22 15:59:00 +00:00
|
|
|
insta = "1.30.0"
|
2023-06-29 15:07:43 +00:00
|
|
|
num_cpus = "1.16.0"
|
2023-04-03 16:02:54 +00:00
|
|
|
test-case = "3.1.0"
|
2022-11-08 12:35:16 +00:00
|
|
|
testutils = { path = "testutils" }
|
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"]
|