forked from sagiegurari/fsio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 961 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
[package]
name = "fsio"
version = "0.1.3"
authors = ["Sagie Gur-Ari <[email protected]>"]
description = "File System and Path utility functions."
license = "Apache-2.0"
edition = "2018"
documentation = "https://sagiegurari.github.io/fsio/api/fsio/index.html"
homepage = "http://github.com/sagiegurari/fsio"
repository = "https://github.com/sagiegurari/fsio.git"
readme = "README.md"
keywords = ["environment", "build"]
categories = ["config", "os"]
include = [
"/benches/*",
"/docs/*",
"/examples/*",
"/src/*",
"/tests/*",
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/Makefile.toml",
]
[dependencies]
rand = { version = "^0.8", optional = true }
[target.'cfg(not(windows))'.dependencies]
users = { version = "^0.11", optional = true }
[dev-dependencies]
doc-comment = "^0.3"
rusty-hook = "^0.11"
[features]
default = []
temp-path = ["rand", "users"]
[badges.codecov]
branch = "master"
repository = "sagiegurari/fsio"
service = "github"