summaryrefslogtreecommitdiff
path: root/mingling_core/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_core/Cargo.toml')
-rw-r--r--mingling_core/Cargo.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/mingling_core/Cargo.toml b/mingling_core/Cargo.toml
new file mode 100644
index 0000000..afeed3b
--- /dev/null
+++ b/mingling_core/Cargo.toml
@@ -0,0 +1,20 @@
+[package]
+name = "mingling_core"
+version = "0.1.0"
+edition = "2024"
+license = "MIT OR Apache-2.0"
+description = "Core of the mingling library"
+repository = "https://github.com/catilgrass/mingling"
+
+[features]
+full = ["macros", "general_renderer"]
+default = ["macros"]
+macros = ["mingling_macros"]
+general_renderer = ["dep:serde", "mingling_macros/serde"]
+
+[dependencies]
+mingling_macros = { version = "0.1.0", optional = true }
+just_fmt = "0.1.2"
+serde = { version = "1.0", features = ["derive"], optional = true }
+thiserror = "2"
+tokio = { version = "1", features = ["full"] }