1
0

feat: initialize rust project

This commit is contained in:
2026-06-28 16:24:46 +08:00
parent 73e539933a
commit e587d3e5ff
7 changed files with 255 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
[package]
name = "lcrconn-cli"
version = "1.0.0"
edition = "2024"
[dependencies]
thiserror = { workspace = true }
lcrconn = { path="../lcrconn" }
clap = { version="4.5.48", features=["derive"]}

View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}