Initial setup
This commit is contained in:
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
target/
|
||||
runner_state.json
|
||||
register_token
|
||||
instance_url
|
||||
1496
Cargo.lock
generated
Normal file
1496
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
2
Cargo.toml
Normal file
2
Cargo.toml
Normal file
@@ -0,0 +1,2 @@
|
||||
[workspace]
|
||||
members = ["nomact"]
|
||||
29
nomact/Cargo.toml
Normal file
29
nomact/Cargo.toml
Normal 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" }
|
||||
Reference in New Issue
Block a user