blob: 23b553d52909272f032936f66efeb5fa37bb6326 (
plain)
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
|
[package]
name = "test-temp-dir"
version = "0.8.1"
# TODO make this 1.x. Let's say, do this in December 2024 or January 2025
authors = ["The Tor Project, Inc.", "Ian Jackson <[email protected]>"]
edition = "2024"
rust-version = "1.91"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Temporary directories for use in tests"
keywords = ["testing", "fs", "filesystem", "temporary", "temp"]
categories = ["development-tools::testing"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = []
full = []
[dependencies]
anyhow = "1.0.23"
derive_more = { version = "2.0.1", features = ["full"] }
educe = "0.4.22"
tempfile = "3"
[package.metadata.docs.rs]
all-features = true
|