aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
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"