Initial setup

This commit is contained in:
Lol3rrr
2026-01-17 20:50:27 +01:00
parent 0d89375fbd
commit d0dddb32e6
4 changed files with 1531 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
target/
runner_state.json
register_token
instance_url

1496
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

2
Cargo.toml Normal file
View File

@@ -0,0 +1,2 @@
[workspace]
members = ["nomact"]

29
nomact/Cargo.toml Normal file
View File

@@ -0,0 +1,29 @@
[package]
name = "nomact"
version = "0.1.0"
edition = "2024"
[dependencies]
tonic = { version = "0.14" }
prost = { version = "0.14" }
tonic-prost = { version = "0.14" }
prost-types = { version = "0.14" }
tonic-web = { version = "0.14" }
hyper = { version = "1.8" }
hyper-util = { version = "0.1" }
hyper-rustls = { version = "0.27" }
rustls = { version = "0.23" }
tower = { version = "0.5" }
http-body = { version = "1.0" }
tokio = { version = "1.49", features = ["rt", "net", "fs"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
serde_yaml = { version = "0.9" }
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = { version = "0.3", features = [] }
[build-dependencies]
tonic-prost-build = { version = "0.14" }