2020-12-12 08:00:42 +00:00
|
|
|
[package]
|
2021-05-15 16:16:31 +00:00
|
|
|
name = "jujutsu-lib"
|
2022-10-18 04:45:04 +00:00
|
|
|
version = "0.5.1"
|
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"
|
2022-05-02 15:53:50 +00:00
|
|
|
rust-version = "1.60"
|
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
|
|
|
|
|
2020-12-24 07:12:18 +00:00
|
|
|
[build-dependencies]
|
2022-09-26 15:40:10 +00:00
|
|
|
protobuf-codegen = "3.2.0"
|
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-03-17 04:10:14 +00:00
|
|
|
blake2 = "0.10.4"
|
2022-08-01 15:46:23 +00:00
|
|
|
bytes = "1.2.1"
|
2021-11-30 17:14:21 +00:00
|
|
|
byteorder = "1.4.3"
|
2022-09-06 19:58:08 +00:00
|
|
|
chrono = { version = "0.4.22", default-features = false, features = ["std", "clock"] }
|
2022-10-06 00:23:55 +00:00
|
|
|
config = { version = "0.13.2", default-features = false, features = ["toml"] }
|
2022-07-29 15:34:12 +00:00
|
|
|
git2 = "0.15.0"
|
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"
|
2022-10-02 09:10:43 +00:00
|
|
|
once_cell = "1.15.0"
|
2022-10-03 15:37:39 +00:00
|
|
|
pest = "2.4.0"
|
2022-10-04 15:41:24 +00:00
|
|
|
pest_derive = "2.4.0"
|
2022-05-02 15:53:50 +00:00
|
|
|
protobuf = { version = "3.0.1", features = ["with-bytes"] }
|
2022-03-17 04:53:28 +00:00
|
|
|
rand = "0.8.5"
|
2022-07-06 15:33:53 +00:00
|
|
|
regex = "1.6.0"
|
2022-10-20 15:35:42 +00:00
|
|
|
serde_json = "1.0.87"
|
2022-02-10 06:19:16 +00:00
|
|
|
tempfile = "3.3.0"
|
2022-09-28 15:49:46 +00:00
|
|
|
thiserror = "1.0.37"
|
2022-10-10 16:27:31 +00:00
|
|
|
uuid = { version = "1.2.1", features = ["v4"] }
|
2022-09-13 15:50:20 +00:00
|
|
|
whoami = "1.2.3"
|
2022-05-13 15:27:28 +00:00
|
|
|
zstd = "0.11.2"
|
2020-12-12 08:00:42 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-21 05:45:09 +00:00
|
|
|
assert_matches = "1.5.0"
|
2022-09-28 15:49:49 +00:00
|
|
|
insta = "1.21.0"
|
2022-02-10 06:19:16 +00:00
|
|
|
num_cpus = "1.13.1"
|
2022-10-03 15:37:43 +00:00
|
|
|
test-case = "2.2.2"
|
2022-03-13 07:03:44 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
vendored-openssl = ["git2/vendored-openssl"]
|