jj/lib/testutils/Cargo.toml
Yuya Nishihara 68ead52c5c hex_util: roll our own decode/encode_hex() functions
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.
2025-07-02 01:56:40 +00:00

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