mirror of
https://github.com/martinvonz/jj.git
synced 2025-05-31 23:25:09 +00:00
These helpers are going to be needed to port the git2 code in the lib tests to gitoxide. Since the cli tests already depend on testutils, this helps with avoiding duplicating the code
37 lines
968 B
TOML
37 lines
968 B
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 }
|
|
git2 = { workspace = true }
|
|
gix = { workspace = true, features = [
|
|
"blocking-network-client",
|
|
"status",
|
|
"tree-editor",
|
|
"worktree-mutation",
|
|
] }
|
|
hex = { workspace = true }
|
|
itertools = { workspace = true }
|
|
jj-lib = { workspace = true, features = ["testing"] }
|
|
pollster = { workspace = true }
|
|
rand = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|