mirror of
https://github.com/jj-vcs/jj.git
synced 2025-12-23 06:01:01 +00:00
Since we have "reverse hex" functions, it's easy to implement the same set of functions for "forward hex". I believe our implementation is slower than highly-optimized versions provided by e.g. faster-hex, but we don't use hex encoding/decoding where the performance matters.
38 lines
1 KiB
TOML
38 lines
1 KiB
TOML
[package]
|
|
name = "testutils"
|
|
description = "Integration test utils for the jj-lib crate"
|
|
publish = false
|
|
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
documentation = { workspace = true }
|
|
readme = { workspace = true }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
bstr = { workspace = true }
|
|
futures = { workspace = true }
|
|
gix = { workspace = true, features = [
|
|
"status",
|
|
"tree-editor",
|
|
"worktree-mutation",
|
|
] }
|
|
itertools = { workspace = true }
|
|
jj-lib = { workspace = true, features = ["testing"] }
|
|
pollster = { workspace = true }
|
|
proptest = { workspace = true }
|
|
proptest-derive = { workspace = true }
|
|
proptest-state-machine = { workspace = true }
|
|
rand = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true }
|
|
toml_edit = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|