summaryrefslogtreecommitdiff
path: root/crates/utils/cfg_file/Cargo.toml
blob: 7c09892ae5a4719046a0c811d9f258065f7fd1af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "cfg_file"
edition = "2024"
version.workspace = true

[features]
default = ["derive"]
derive = []

[dependencies]
cfg_file_derive = { path = "cfg_file_derive" }

# Async
tokio = { version = "1.48.0", features = ["full"] }
async-trait = "0.1.89"

# Serialization
serde = { version = "1.0.228", features = ["derive"] }
serde_yaml = "0.9.34"
serde_json = "1.0.145"
ron = "0.11.0"
toml = "0.9.8"