2020-12-12 08:00:42 +00:00
|
|
|
[package]
|
2021-05-15 16:16:31 +00:00
|
|
|
name = "jujutsu-lib"
|
2022-12-06 04:31:59 +00:00
|
|
|
version = "0.6.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"
|
2023-01-19 04:54:19 +00:00
|
|
|
rust-version = "1.61"
|
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-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"
|
2022-11-21 15:54:01 +00:00
|
|
|
bytes = "1.3.0"
|
2021-11-30 17:14:21 +00:00
|
|
|
byteorder = "1.4.3"
|
2022-11-14 17:37:48 +00:00
|
|
|
chrono = { version = "0.4.23", default-features = false, features = ["std", "clock"] }
|
2022-12-05 15:15:29 +00:00
|
|
|
config = { version = "0.13.3", default-features = false, features = ["toml"] }
|
2022-11-17 15:15:00 +00:00
|
|
|
digest = "0.10.6"
|
2023-01-20 23:54:15 +00:00
|
|
|
git2 = "0.16.1"
|
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-12-30 15:05:09 +00:00
|
|
|
once_cell = "1.17.0"
|
2023-01-24 15:08:09 +00:00
|
|
|
pest = "2.5.4"
|
2023-01-25 15:09:30 +00:00
|
|
|
pest_derive = "2.5.4"
|
2022-12-30 03:59:01 +00:00
|
|
|
rand = "0.8.5"
|
|
|
|
rand_chacha = "0.3.1"
|
2023-01-09 15:14:13 +00:00
|
|
|
regex = "1.7.1"
|
2022-12-19 15:12:12 +00:00
|
|
|
serde_json = "1.0.91"
|
2022-02-10 06:19:16 +00:00
|
|
|
tempfile = "3.3.0"
|
2022-12-19 15:11:56 +00:00
|
|
|
thiserror = "1.0.38"
|
2022-12-05 18:55:03 +00:00
|
|
|
thrift = { version = "0.17.0", default-features = false, optional = true }
|
2022-12-29 15:07:09 +00:00
|
|
|
whoami = "1.3.0"
|
2023-01-12 15:13:53 +00:00
|
|
|
zstd = "0.12.2"
|
2022-11-20 03:38:25 +00:00
|
|
|
tracing = "0.1.37"
|
2023-01-12 15:14:33 +00:00
|
|
|
prost = "0.11.6"
|
2020-12-12 08:00:42 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-21 05:45:09 +00:00
|
|
|
assert_matches = "1.5.0"
|
2023-01-09 15:14:21 +00:00
|
|
|
insta = "1.26.0"
|
2022-12-21 15:07:56 +00:00
|
|
|
num_cpus = "1.15.0"
|
2022-10-03 15:37:43 +00:00
|
|
|
test-case = "2.2.2"
|
2022-11-08 12:35:16 +00:00
|
|
|
testutils = { path = "testutils" }
|
2022-03-13 07:03:44 +00:00
|
|
|
|
|
|
|
[features]
|
2022-12-02 20:49:21 +00:00
|
|
|
default = ["legacy-thrift"]
|
2022-03-13 07:03:44 +00:00
|
|
|
vendored-openssl = ["git2/vendored-openssl"]
|
2022-12-02 20:49:21 +00:00
|
|
|
# Enable upgrade of repositories created with storage backends based on
|
|
|
|
# Thrift format. Only repos accessed by an unreleased jj version in the
|
|
|
|
# (0.5.1,0.6.0) range used Thrift.
|
|
|
|
legacy-thrift = ["thrift"]
|