summaryrefslogtreecommitdiff
path: root/mingling_core/Cargo.toml
blob: 40b4c41e171c8b6cbbf1ed9ba99639d8045879c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "mingling_core"
version = "0.1.2"
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"]

[dependencies]
just_fmt = "0.1.2"
serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "2"
tokio = { version = "1", features = ["io-std", "io-util"] }