mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-12 19:08:46 +03:00
c535b1c50d
I saw this while looking over the Cargo file and remembered Martin removed usage of this a while back. Signed-off-by: Austin Seipp <aseipp@pobox.com>
134 lines
3.4 KiB
TOML
134 lines
3.4 KiB
TOML
cargo-features = []
|
|
|
|
[workspace]
|
|
resolver = "2"
|
|
members = ["cli", "lib", "lib/gen-protos", "lib/proc-macros", "lib/testutils"]
|
|
|
|
[workspace.package]
|
|
version = "0.19.0"
|
|
license = "Apache-2.0"
|
|
rust-version = "1.76" # NOTE: remember to update CI, contributing.md, changelog.md, and flake.nix
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/martinvonz/jj"
|
|
repository = "https://github.com/martinvonz/jj"
|
|
documentation = "https://martinvonz.github.io/jj/"
|
|
categories = ["version-control", "development-tools"]
|
|
keywords = ["VCS", "DVCS", "SCM", "Git", "Mercurial"]
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1.0.86"
|
|
assert_cmd = "2.0.8"
|
|
assert_matches = "1.5.0"
|
|
async-trait = "0.1.80"
|
|
backoff = "0.4.0"
|
|
blake2 = "0.10.6"
|
|
bytes = "1.5.0"
|
|
cargo_metadata = "0.17.0"
|
|
clap = { version = "4.5.8", features = [
|
|
"derive",
|
|
"deprecated",
|
|
"wrap_help",
|
|
"string",
|
|
] }
|
|
clap_complete = "4.5.7"
|
|
clap_complete_nushell = "4.5.2"
|
|
clap-markdown = "0.1.4"
|
|
clap_mangen = "0.2.10"
|
|
chrono = { version = "0.4.38", default-features = false, features = [
|
|
"std",
|
|
"clock",
|
|
] }
|
|
config = { version = "0.13.4", default-features = false, features = ["toml"] }
|
|
criterion = "0.5.1"
|
|
crossterm = { version = "0.27", default-features = false }
|
|
digest = "0.10.7"
|
|
dirs = "5.0.1"
|
|
dunce = "1.0.4"
|
|
either = "1.13.0"
|
|
esl01-renderdag = "0.3.0"
|
|
futures = "0.3.30"
|
|
git2 = "0.18.3"
|
|
gix = { version = "0.63.0", default-features = false, features = [
|
|
"index",
|
|
"max-performance-safe",
|
|
"blob-diff",
|
|
] }
|
|
gix-filter = "0.11.2"
|
|
glob = "0.3.1"
|
|
hex = "0.4.3"
|
|
ignore = "0.4.20"
|
|
indexmap = "2.2.5"
|
|
indoc = "2.0.4"
|
|
insta = { version = "1.39.0", features = ["filters"] }
|
|
itertools = "0.12.1"
|
|
libc = { version = "0.2.155" }
|
|
maplit = "1.0.2"
|
|
minus = { version = "5.6.1", features = ["dynamic_output", "search"] }
|
|
num_cpus = "1.16.0"
|
|
once_cell = "1.19.0"
|
|
pest = "2.7.11"
|
|
pest_derive = "2.7.11"
|
|
pollster = "0.3.0"
|
|
pretty_assertions = "1.4.0"
|
|
proc-macro2 = "1.0.86"
|
|
prost = "0.12.6"
|
|
prost-build = "0.12.6"
|
|
quote = "1.0.36"
|
|
rand = "0.8.5"
|
|
rand_chacha = "0.3.1"
|
|
rayon = "1.10.0"
|
|
ref-cast = "1.0.23"
|
|
regex = "1.10.5"
|
|
rpassword = "7.3.1"
|
|
rustix = { version = "0.38.34", features = ["fs"] }
|
|
scm-record = "0.3.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.120"
|
|
slab = "0.4.9"
|
|
smallvec = { version = "1.13.2", features = [
|
|
"const_generics",
|
|
"const_new",
|
|
"union",
|
|
] }
|
|
strsim = "0.11.1"
|
|
syn = "2.0.68"
|
|
tempfile = "3.10.1"
|
|
test-case = "3.3.1"
|
|
textwrap = "0.16.1"
|
|
thiserror = "1.0.61"
|
|
timeago = { version = "0.4.2", default-features = false }
|
|
tokio = { version = "1.38.0" }
|
|
toml_edit = { version = "0.19.15", features = ["serde"] }
|
|
tracing = "0.1.40"
|
|
tracing-chrome = "0.7.2"
|
|
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
|
|
"std",
|
|
"ansi",
|
|
"env-filter",
|
|
"fmt",
|
|
] }
|
|
unicode-width = "0.1.13"
|
|
version_check = "0.9.4"
|
|
watchman_client = { version = "0.9.0" }
|
|
whoami = "1.5.1"
|
|
winreg = "0.52"
|
|
zstd = "0.12.4"
|
|
|
|
# put all inter-workspace libraries, i.e. those that use 'path = ...' here in
|
|
# their own (alphabetically sorted) block
|
|
|
|
jj-lib = { path = "lib", version = "0.19.0" }
|
|
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.19.0" }
|
|
testutils = { path = "lib/testutils" }
|
|
|
|
# Insta suggests compiling these packages in opt mode for faster testing.
|
|
# See https://docs.rs/insta/latest/insta/#optional-faster-runs.
|
|
[profile.dev.package]
|
|
insta.opt-level = 3
|
|
similar.opt-level = 3
|
|
|
|
[profile.release]
|
|
strip = "debuginfo"
|
|
codegen-units = 1
|