mirror of
https://github.com/martinvonz/jj.git
synced 2024-12-27 06:27:43 +00:00
d858db7e85
Summary: There's no need to go around specifying `rust-version` or `edition` or `version` several times, now that we have a global workspace. Instead, inherit workspace metadata from the top-level Cargo.toml file. Signed-off-by: Austin Seipp <aseipp@pobox.com> Change-Id: Iaf905445978ed2b3377239dcdb8a6c32
23 lines
579 B
TOML
23 lines
579 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]
|
|
config.workspace = true
|
|
git2.workspace = true
|
|
itertools.workspace = true
|
|
jj-lib.workspace = true
|
|
rand.workspace = true
|
|
tempfile.workspace = true
|