2020-12-12 11:00:42 +03:00
|
|
|
[package]
|
2021-05-15 19:16:31 +03:00
|
|
|
name = "jujutsu-lib"
|
2022-10-17 23:41:46 +03:00
|
|
|
version = "0.5.0"
|
2020-12-12 11:00:42 +03:00
|
|
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
2021-12-14 08:38:10 +03:00
|
|
|
edition = "2021"
|
2022-05-02 18:53:50 +03:00
|
|
|
rust-version = "1.60"
|
2021-01-03 19:45:07 +03:00
|
|
|
license = "Apache-2.0"
|
2021-05-15 19:16:31 +03:00
|
|
|
description = "Library for Jujutsu (an experimental VCS)"
|
2021-01-03 19:45:07 +03:00
|
|
|
homepage = "https://github.com/martinvonz/jj"
|
|
|
|
repository = "https://github.com/martinvonz/jj"
|
2021-05-15 19:16:31 +03:00
|
|
|
documentation = "https://docs.rs/jujutsu"
|
2021-01-03 19:45:07 +03:00
|
|
|
readme = "../README.md"
|
2020-12-12 11:00:42 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2020-12-24 10:12:18 +03:00
|
|
|
[build-dependencies]
|
2022-09-26 18:40:10 +03:00
|
|
|
protobuf-codegen = "3.2.0"
|
2022-02-21 09:14:13 +03:00
|
|
|
version_check = "0.9.4"
|
2020-12-12 11:00:42 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-10 09:15:38 +03:00
|
|
|
backoff = "0.4.0"
|
2022-03-17 07:10:14 +03:00
|
|
|
blake2 = "0.10.4"
|
2022-08-01 18:46:23 +03:00
|
|
|
bytes = "1.2.1"
|
2021-11-30 20:14:21 +03:00
|
|
|
byteorder = "1.4.3"
|
2022-09-06 22:58:08 +03:00
|
|
|
chrono = { version = "0.4.22", default-features = false, features = ["std", "clock"] }
|
2022-10-06 03:23:55 +03:00
|
|
|
config = { version = "0.13.2", default-features = false, features = ["toml"] }
|
2022-07-29 18:34:12 +03:00
|
|
|
git2 = "0.15.0"
|
2021-11-30 20:14:21 +03:00
|
|
|
hex = "0.4.3"
|
2022-09-20 19:55:05 +03:00
|
|
|
itertools = "0.10.5"
|
2020-12-23 20:39:09 +03:00
|
|
|
maplit = "1.0.2"
|
2022-10-02 12:10:43 +03:00
|
|
|
once_cell = "1.15.0"
|
2022-10-03 18:37:39 +03:00
|
|
|
pest = "2.4.0"
|
2022-10-04 18:41:24 +03:00
|
|
|
pest_derive = "2.4.0"
|
2022-05-02 18:53:50 +03:00
|
|
|
protobuf = { version = "3.0.1", features = ["with-bytes"] }
|
2022-03-17 07:53:28 +03:00
|
|
|
rand = "0.8.5"
|
2022-07-06 18:33:53 +03:00
|
|
|
regex = "1.6.0"
|
2022-10-10 19:27:25 +03:00
|
|
|
serde_json = "1.0.86"
|
2022-02-10 09:19:16 +03:00
|
|
|
tempfile = "3.3.0"
|
2022-09-28 18:49:46 +03:00
|
|
|
thiserror = "1.0.37"
|
2022-10-10 19:27:31 +03:00
|
|
|
uuid = { version = "1.2.1", features = ["v4"] }
|
2022-09-13 18:50:20 +03:00
|
|
|
whoami = "1.2.3"
|
2022-05-13 18:27:28 +03:00
|
|
|
zstd = "0.11.2"
|
2020-12-12 11:00:42 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-21 08:45:09 +03:00
|
|
|
assert_matches = "1.5.0"
|
2022-09-28 18:49:49 +03:00
|
|
|
insta = "1.21.0"
|
2022-02-10 09:19:16 +03:00
|
|
|
num_cpus = "1.13.1"
|
2022-10-03 18:37:43 +03:00
|
|
|
test-case = "2.2.2"
|
2022-03-13 10:03:44 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
vendored-openssl = ["git2/vendored-openssl"]
|