-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 819 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
[package]
name = "libset"
version = "0.1.6"
edition = "2021"
license = "GPL-2.0"
description = "A configuration file management library for Rust applications."
homepage = "https://libset.edfloreshz.dev/"
documentation = "https://docs.rs/libset"
repository = "https://github.com/edfloreshz/libset/"
readme = "README.md"
[features]
default = ["json"]
toml = ["dep:toml"]
json = ["dep:serde_json"]
ron = ["dep:ron"]
[dependencies]
dirs = "5.0.1"
tracing = "0.1.37"
thiserror = "1.0.56"
atomicwrites = "0.4.3"
serde = { version = "1.0.126", features = ["derive"] }
toml = { version = "0.8.10", optional = true }
ron = { version = "0.8.1", optional = true }
serde_json = { version = "1.0.72", optional = true }
[target.'cfg(unix)'.dependencies]
xdg = "2.5.2"
[target.'cfg(windows)'.dependencies]
known-folders = "1.1.0"