mirror of
https://github.com/martinvonz/jj.git
synced 2024-12-01 11:49:01 +00:00
5e6dd17ed9
Bumps [whoami](https://github.com/ardaku/whoami) from 1.4.0 to 1.4.1. - [Changelog](https://github.com/ardaku/whoami/blob/stable/CHANGELOG.md) - [Commits](https://github.com/ardaku/whoami/compare/v1.4.0...v1.4.1) --- updated-dependencies: - dependency-name: whoami dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
64 lines
1.5 KiB
TOML
64 lines
1.5 KiB
TOML
[package]
|
|
name = "jujutsu-lib"
|
|
version = "0.7.0"
|
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
|
edition = "2021"
|
|
rust-version = "1.64"
|
|
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
|
|
|
|
[[bench]]
|
|
name = "diff_bench"
|
|
harness = false
|
|
|
|
[build-dependencies]
|
|
version_check = "0.9.4"
|
|
|
|
[dependencies]
|
|
backoff = "0.4.0"
|
|
blake2 = "0.10.6"
|
|
byteorder = "1.4.3"
|
|
bytes = "1.4.0"
|
|
chrono = { version = "0.4.26", default-features = false, features = ["std", "clock"] }
|
|
config = { version = "0.13.3", default-features = false, features = ["toml"] }
|
|
digest = "0.10.7"
|
|
git2 = "0.17.2"
|
|
hex = "0.4.3"
|
|
itertools = "0.11.0"
|
|
maplit = "1.0.2"
|
|
once_cell = "1.18.0"
|
|
pest = "2.7.0"
|
|
pest_derive = "2.7.0"
|
|
prost = "0.11.9"
|
|
rand = "0.8.5"
|
|
rand_chacha = "0.3.1"
|
|
regex = "1.8.4"
|
|
serde_json = "1.0.97"
|
|
smallvec = { version = "1.10.0", features = ["const_generics", "const_new", "union"] }
|
|
strsim = "0.10.0"
|
|
tempfile = "3.6.0"
|
|
thiserror = "1.0.40"
|
|
tracing = "0.1.37"
|
|
whoami = "1.4.1"
|
|
zstd = "0.12.3"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
rustix = { version = "0.37.20", features = ["fs"] }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5.0"
|
|
criterion = "0.5.1"
|
|
insta = "1.30.0"
|
|
num_cpus = "1.15.0"
|
|
test-case = "3.1.0"
|
|
testutils = { path = "testutils" }
|
|
|
|
[features]
|
|
default = []
|
|
vendored-openssl = ["git2/vendored-openssl"]
|