mirror of
https://github.com/martinvonz/jj.git
synced 2024-12-30 16:19:35 +00:00
aac5b7aa25
Almost everyone calls the project "jj", and there seeems to be consensus that we should rename the crates. I originally wanted the crates to be called `jj` and `jj-lib`, but `jj` was already taken. `jj-cli` is probably at least as good for it anyway. Once we've published a 0.8.0 under the new names, we'll release 0.7.1 versions under the old names with pointers to the new crates names.
23 lines
697 B
TOML
23 lines
697 B
TOML
[package]
|
|
name = "testutils"
|
|
version = "0.7.0"
|
|
authors = ["Martin von Zweigbergk <martinvonz@google.com>"]
|
|
edition = "2021"
|
|
rust-version = "1.61"
|
|
license = "Apache-2.0"
|
|
description = "Integration test utils for the jj-lib crate"
|
|
homepage = "https://github.com/martinvonz/jj"
|
|
repository = "https://github.com/martinvonz/jj"
|
|
documentation = "https://docs.rs/jj-lib"
|
|
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"] }
|
|
git2 = "0.17.2"
|
|
itertools = "0.11.0"
|
|
jj-lib = { path = ".." }
|
|
rand = "0.8.5"
|
|
tempfile = "3.6.0"
|