aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-29 03:34:41 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-29 03:34:41 +0800
commitba15b7c06468cb6c52c8d2a53419fd83f9ebcb8b (patch)
treecdaa1c71585d10dd73945cefe95f2c25f27924ed /Cargo.toml
parentff70307869a547b13850d1eec3f72e8ca3bca265 (diff)
refactor: promote project to workspace with macros sub-crate
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml20
1 files changed, 9 insertions, 11 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5ffa63a..157065c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,13 +1,11 @@
-[package]
-name = "just_template"
-authors = ["Weicao-CatilGrass"]
-description = "a tool for code gen via templates"
+[workspace]
+members = [
+ "just_template",
+ "just_template_macros",
+]
+
+[workspace.package]
version = "0.2.0"
+description = "A tool for code gen via templatese"
+authors = ["Weicao-CatilGrass <catil_grass@qq.com>"]
edition = "2024"
-
-readme = "README.md"
-license = "MIT OR Apache-2.0"
-repository = "https://github.com/catilgrass/just_template"
-
-[dependencies]
-just_fmt = "0.1.2"