From d1cda84f0d9acf2700e4c2eeafff4dbb63cc51fe Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 20 Jun 2026 06:58:31 +0800 Subject: feat: implement core capture engine with CLI and output protocols --- Cargo.toml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index d40ae45..68a84cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,4 +11,23 @@ path = "src/main.rs" [dependencies] clap = { version = "4.6.1", features = ["derive"] } tokio = { version = "1.52.3", features = ["net", "rt", "rt-multi-thread", "macros"] } -vtx-engine = "0.3.1" +tracing-subscriber = { version = "0.3.19", features = ["env-filter"] } + +[dependencies.vtx-engine] +git = "https://github.com/Weicao-CatilGrass/vtx-engine" +rev = "efa61f80156c226f76bf12e5cedf11c92af22ccb" + +[profile.dev] +opt-level = 0 +debug = true +panic = "unwind" +incremental = true +codegen-units = 256 + +[profile.release] +opt-level = 3 +debug = false +panic = "abort" +incremental = false +codegen-units = 1 +lto = "fat" -- cgit