-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 756 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "testdir"
version = "0.10.0"
authors = ["Floris Bruynooghe <flub@devork.be>"]
edition = "2024"
description = "Semi-persistent, scoped test directories"
repository = "https://github.com/flub/testdir"
documentation = "https://docs.rs/testdir"
license = "MIT OR Apache-2.0"
keywords = ["test", "temp", "temporary", "directory"]
categories = ["development-tools::testing", "filesystem"]
# Sadly this also needs to be updated in .github/workflows/ci.yml
rust-version = "1.88"
[dependencies]
anyhow = "1.0.20"
backtrace = "0.3.55"
cargo-platform = "0.3"
cargo_metadata = "0.23.0"
fslock = "0.2.1"
sysinfo = { version = "0.38", default-features = false, features = ["system"] }
whoami = "2"
[dev-dependencies]
rstest = "0.26.1"
tempfile = "3"