2020-12-12 08:00:42 +00:00
|
|
|
[package]
|
2021-05-15 16:16:31 +00:00
|
|
|
name = "jujutsu-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"
|
2021-05-15 16:16:31 +00:00
|
|
|
documentation = "https://docs.rs/jujutsu"
|
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-05-31 15:59:58 +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"
|
2022-09-20 16:55:05 +00:00
|
|
|
itertools = "0.10.5"
|
2020-12-23 17:39:09 +00:00
|
|
|
maplit = "1.0.2"
|
2023-05-29 16:10:45 +00:00
|
|
|
once_cell = "1.17.2"
|
2023-04-26 15:59:27 +00:00
|
|
|
pest = "2.6.0"
|
2023-04-27 15:59:26 +00:00
|
|
|
pest_derive = "2.6.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-05-26 15:59:36 +00:00
|
|
|
regex = "1.8.3"
|
2023-04-13 16:09:56 +00:00
|
|
|
serde_json = "1.0.96"
|
2023-04-22 06:07:21 +00:00
|
|
|
smallvec = { version = "1.10.0", features = ["const_generics", "const_new", "union"] }
|
2023-03-30 16:26:08 +00:00
|
|
|
tempfile = "3.5.0"
|
2023-03-20 20:20:59 +00:00
|
|
|
thiserror = "1.0.40"
|
2023-04-30 05:35:41 +00:00
|
|
|
tracing = "0.1.37"
|
2023-03-13 16:03:24 +00:00
|
|
|
whoami = "1.4.0"
|
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]
|
|
|
|
rustix = { version = "0.37.19", features = ["fs"] }
|
|
|
|
|
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-03-23 16:04:56 +00:00
|
|
|
insta = "1.29.0"
|
2022-12-21 15:07:56 +00:00
|
|
|
num_cpus = "1.15.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"]
|