2020-12-12 11:00:42 +03:00
|
|
|
[package]
|
2021-05-15 19:16:31 +03:00
|
|
|
name = "jujutsu-lib"
|
2022-04-03 08:56:59 +03:00
|
|
|
version = "0.4.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-05-02 18:53:50 +03:00
|
|
|
protobuf-codegen = "3.0.1"
|
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-08-22 21:28:34 +03:00
|
|
|
chrono = { version = "0.4.20", default-features = false, features = ["std", "clock"] }
|
2022-08-02 18:35:49 +03:00
|
|
|
config = { version = "0.13.2", 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-02-10 09:19:16 +03:00
|
|
|
itertools = "0.10.3"
|
2020-12-23 20:39:09 +03:00
|
|
|
maplit = "1.0.2"
|
2022-08-01 18:46:27 +03:00
|
|
|
pest = "2.2.1"
|
2022-08-09 18:34:25 +03:00
|
|
|
pest_derive = "2.2.1"
|
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-08-03 18:41:34 +03:00
|
|
|
serde_json = "1.0.83"
|
2022-02-10 09:19:16 +03:00
|
|
|
tempfile = "3.3.0"
|
2022-08-09 00:23:52 +03:00
|
|
|
thiserror = "1.0.32"
|
2022-06-13 18:58:47 +03:00
|
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
2021-11-30 20:14:21 +03:00
|
|
|
whoami = "1.2.1"
|
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-08-22 18:35:21 +03:00
|
|
|
insta = "1.19.0"
|
2022-02-10 09:19:16 +03:00
|
|
|
num_cpus = "1.13.1"
|
2022-07-22 18:32:39 +03:00
|
|
|
test-case = "2.2.1"
|
2022-03-13 10:03:44 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
vendored-openssl = ["git2/vendored-openssl"]
|