-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (31 loc) · 807 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
[package]
authors = ["Dawid Ciężarkiewicz <[email protected]>"]
description = "Very simple dotfile manager"
documentation = "https://docs.rs/dotr/"
homepage = "https://github.com/dpc/dotr"
keywords = ["rc", "dot", "dotfile"]
license = "MPL-2.0"
name = "dotr"
readme = "README.md"
repository = "https://github.com/dpc/dotr"
version = "0.4.0"
edition = '2018'
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
serde = { version = "1", features = ["derive"] }
serde_derive = "1"
tempdir = "*"
toml = "0.4"
walkdir = "2"
tracing = "*"
clap-verbosity-flag = "2.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] }
anyhow = "1.0.80"
[profile]
[profile.ci]
inherits = "dev"
incremental = false
debug = "line-tables-only"
lto = "off"
[profile.release]
strip = true