feat: workspace 骨架 — core + cli 模块结构

This commit is contained in:
2026-06-16 23:27:58 +08:00
parent 7590b290ca
commit ad77b3ac1b
25 changed files with 404 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
[package]
name = "qrgen"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
[[bin]]
name = "qrgen"
path = "src/main.rs"
[dependencies]
qr-core = { path = "../core" }
clap = { version = "4", features = ["derive"] }
anyhow = "1"
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("QRGen - 开发中");
}