You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
292 B
TOML
17 lines
292 B
TOML
[package]
|
|
name = "reactor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]] # Bin to run the reactror
|
|
name = "reactor"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tonic = "0.9"
|
|
prost = "0.11"
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.9"
|