ok/jj
1
0
Fork 0
forked from mirrors/jj
jj/lib/Cargo.toml
dependabot[bot] e1bf2ea7f4 cargo: bump thiserror from 1.0.37 to 1.0.38
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.37 to 1.0.38.
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.37...1.0.38)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-19 09:57:39 -08:00

61 lines
1.7 KiB
TOML

[package]
name = "jujutsu-lib"
version = "0.6.1"
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.2.0"
version_check = "0.9.4"
[dependencies]
backoff = "0.4.0"
blake2 = "0.10.6"
bytes = "1.3.0"
byteorder = "1.4.3"
chrono = { version = "0.4.23", default-features = false, features = ["std", "clock"] }
config = { version = "0.13.3", default-features = false, features = ["toml"] }
digest = "0.10.6"
git2 = "0.15.0"
hex = "0.4.3"
itertools = "0.10.5"
maplit = "1.0.2"
once_cell = "1.16.0"
pest = "2.5.1"
pest_derive = "2.5.1"
protobuf = { version = "3.0.1", features = ["with-bytes"] }
rand = "0.8.5"
regex = "1.7.0"
serde_json = "1.0.91"
tempfile = "3.3.0"
thiserror = "1.0.38"
thrift = { version = "0.17.0", default-features = false, optional = true }
uuid = { version = "1.2.2", features = ["v4"] }
whoami = "1.2.3"
zstd = "0.12.1"
tracing = "0.1.37"
[dev-dependencies]
assert_matches = "1.5.0"
insta = "1.23.0"
num_cpus = "1.14.0"
test-case = "2.2.2"
testutils = { path = "testutils" }
[features]
default = ["legacy-thrift"]
vendored-openssl = ["git2/vendored-openssl"]
# 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"]