blob: d8e7c8e6eb04492472bb9e22d0ad605e4f4ed578 (
plain) (
blame)
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
|
[package]
name = "mingling_core"
version = "0.1.4"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Core of the mingling library"
repository = "https://github.com/catilgrass/mingling"
[features]
default = []
full = ["general_renderer"]
general_renderer = [
"dep:serde",
"dep:ron",
"dep:serde_json",
"dep:serde_yaml",
"dep:toml",
]
[dependencies]
just_fmt = "0.1.2"
serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "2"
tokio = { version = "1", features = ["io-std", "io-util"] }
ron = { version = "0.12.1", optional = true }
serde_json = { version = "1", optional = true }
serde_yaml = { version = "0.9", optional = true }
toml = { version = "0.9.8", optional = true }
|