-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 923 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
[package]
name = "turboinstall"
version = "0.3.4"
edition = "2021"
authors = ["threadexio <pzarganitis@gmail.com>"]
description = "A simple tool for overlaying directory trees on top of each other"
license = "MIT"
repository = "/~https://github.com/threadexio/turboinstall"
readme = "README.md"
keywords = ["packaging", "tool"]
categories = ["filesystem"]
autotests = false
include = ["src/**/*", "Cargo.toml"]
[features]
no-platform-specific = []
[dependencies]
anyhow = "1.0"
log = "0.4"
fern = { version = "0.6" }
clap = { version = "4.0", features = ["cargo", "derive"] }
colored = { version = "2.0" }
atty = { version = "0.2" }
walkdir = "2"
regex = { version = "1.7" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
toml = "0.7.2"
[target.'cfg(unix)'.dependencies]
nix = { version = "0.26", default-features = false, features = [
"fs",
"user",
"zerocopy",
"ioctl",
] }