20 lines
357 B
TOML
20 lines
357 B
TOML
|
|
[package]
|
||
|
|
name = "glog-runner"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
rust-version.workspace = true
|
||
|
|
|
||
|
|
[lints]
|
||
|
|
workspace = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
storage = { path = "../storage" }
|
||
|
|
query-ops = { path = "../query-ops" }
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "glog-run"
|
||
|
|
path = "src/main.rs"
|