2022-11-08 12:35:16 +00:00
|
|
|
[package]
|
|
|
|
name = "testutils"
|
2023-02-16 17:26:40 +00:00
|
|
|
version = "0.7.0"
|
2022-11-08 12:35:16 +00:00
|
|
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
|
|
|
edition = "2021"
|
2023-01-19 04:54:19 +00:00
|
|
|
rust-version = "1.61"
|
2022-11-08 12:35:16 +00:00
|
|
|
license = "Apache-2.0"
|
2023-06-28 14:12:40 +00:00
|
|
|
description = "Integration test utils for the jj-lib crate"
|
2022-11-08 12:35:16 +00:00
|
|
|
homepage = "https://github.com/martinvonz/jj"
|
|
|
|
repository = "https://github.com/martinvonz/jj"
|
2023-06-28 14:12:40 +00:00
|
|
|
documentation = "https://docs.rs/jj-lib"
|
2022-11-08 12:35:16 +00:00
|
|
|
readme = "../..//README.md"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
config = { version = "0.13.2", default-features = false, features = ["toml"] }
|
2023-05-29 16:10:30 +00:00
|
|
|
git2 = "0.17.2"
|
2023-06-22 15:58:45 +00:00
|
|
|
itertools = "0.11.0"
|
2023-06-28 14:12:40 +00:00
|
|
|
jj-lib = { path = ".." }
|
2022-11-08 12:35:16 +00:00
|
|
|
rand = "0.8.5"
|
2023-06-07 15:59:23 +00:00
|
|
|
tempfile = "3.6.0"
|