-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (40 loc) · 856 Bytes
/
Cargo.toml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "file-objects-rs"
version = "0.1.1"
description = "Real and fake implementations of file system operations"
authors = [
"Sven Van Asbroeck <TheSven73@gmail.com>",
"Isobel Redelmeier <iredelmeier@gmail.com>"
]
edition = "2018"
license = "MIT"
repository = "https://github.com/TheSven73/file-objects-rs"
readme = "README.md"
categories = [
"development-tools::testing",
"filesystem"
]
keywords = [
"filesystem",
"testing",
"fake"
]
[lib]
bench = false
doctest = false
test = true
[[test]]
name = "fs"
required-features = ["fake", "temp"]
[[bench]]
name = "fs"
harness = false
[features]
default = ["fake", "temp"]
fake = []
temp = ["rand", "tempdir"]
[dependencies]
rand = { version = "^0.4", optional = true }
tempdir = { version = "^0.3", optional = true }
[dev-dependencies]
bencher = "0.1.5" # for benches on stable