- add: version checking starter

This commit is contained in:
2025-03-25 21:22:52 -04:00
parent d47d5f44b1
commit 50cc39c6a2
3 changed files with 106 additions and 4 deletions

View File

@@ -1,11 +1,14 @@
[package]
name = "launcher"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
[dependencies]
shell-escape = "0.1.5"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "chrono"] }
url = "2.5.4"
clap = { version = "4.5.23", features = ["derive"] }
reqwest = { version = "0.12.15", features = ["json"] }
serde_json = "1.0.140"
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }