aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-20 06:58:31 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-20 06:58:31 +0800
commitd1cda84f0d9acf2700e4c2eeafff4dbb63cc51fe (patch)
treec8c8faff8f419e4d94fae72757d179492ae58b37 /Cargo.toml
parent332ee84b59f33e3a3f1cb109e02a1c0c9fe108cd (diff)
feat: implement core capture engine with CLI and output protocols
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml21
1 files changed, 20 insertions, 1 deletions
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"