aboutsummaryrefslogtreecommitdiff
path: root/mling/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-29 04:27:39 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-29 04:27:39 +0800
commit07bf5bb372fc94f346b039ad9eecfb64c8a1ff46 (patch)
tree398662be9b13e5e06ff13ead775c00807b43c0c8 /mling/Cargo.toml
parent7ff051635eac6b10fcd66a1878563c8155a661a4 (diff)
feat(mling): enable pathf feature and run type mapping build
Add the `pathf` feature to mingling dependency and invoke `analyze_and_build_type_mapping` during the build script. Reorganize internal module visibility from `mod + pub use` to direct `pub mod`.
Diffstat (limited to 'mling/Cargo.toml')
-rw-r--r--mling/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/mling/Cargo.toml b/mling/Cargo.toml
index 4954320..8008463 100644
--- a/mling/Cargo.toml
+++ b/mling/Cargo.toml
@@ -25,6 +25,7 @@ mingling = { path = "../mingling", features = [
"structural_renderer",
"extra_macros",
"yaml_serde_fmt",
+ "pathf"
] }
serde = { version = "1", features = ["derive"] }
@@ -37,4 +38,4 @@ toml.workspace = true
[build-dependencies]
chrono = "0.4"
-mingling = { path = "../mingling", features = ["comp", "builds"] }
+mingling = { path = "../mingling", features = ["comp", "pathf", "builds"] }