mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-11 13:46:02 +03:00
044bc93aeb
Bumps [git2](https://github.com/rust-lang/git2-rs) from 0.14.2 to 0.14.4. - [Release notes](https://github.com/rust-lang/git2-rs/releases) - [Commits](https://github.com/rust-lang/git2-rs/compare/0.14.2...0.14.4) --- updated-dependencies: - dependency-name: git2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.2 KiB
TOML
51 lines
1.2 KiB
TOML
[package]
|
|
name = "jujutsu-lib"
|
|
version = "0.4.0"
|
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
|
edition = "2021"
|
|
rust-version = "1.60"
|
|
license = "Apache-2.0"
|
|
description = "Library for Jujutsu (an experimental VCS)"
|
|
homepage = "https://github.com/martinvonz/jj"
|
|
repository = "https://github.com/martinvonz/jj"
|
|
documentation = "https://docs.rs/jujutsu"
|
|
readme = "../README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
protobuf-codegen = "3.0.1"
|
|
version_check = "0.9.4"
|
|
|
|
[dependencies]
|
|
backoff = "0.4.0"
|
|
blake2 = "0.10.4"
|
|
bytes = "1.1.0"
|
|
byteorder = "1.4.3"
|
|
chrono = "0.4.19"
|
|
config = { version = "0.13.1", features = ["toml"] }
|
|
git2 = "0.14.4"
|
|
hex = "0.4.3"
|
|
itertools = "0.10.3"
|
|
maplit = "1.0.2"
|
|
pest = "2.1.3"
|
|
pest_derive = "2.1.0"
|
|
protobuf = { version = "3.0.1", features = ["with-bytes"] }
|
|
rand = "0.8.5"
|
|
regex = "1.5.6"
|
|
serde_json = "1.0.81"
|
|
tempfile = "3.3.0"
|
|
thiserror = "1.0.31"
|
|
uuid = { version = "1.0.0", features = ["v4"] }
|
|
whoami = "1.2.1"
|
|
zstd = "0.11.2"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5.0"
|
|
insta = "1.14.0"
|
|
num_cpus = "1.13.1"
|
|
test-case = "2.1.0"
|
|
|
|
[features]
|
|
vendored-openssl = ["git2/vendored-openssl"]
|