17 lines
408 B
TOML
17 lines
408 B
TOML
[package]
|
|||
|
|
name = "control-plane"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1"
|
||
|
|
rusqlite = { version = "0.34", features = ["bundled"] }
|
||
|
|
uuid = { version = "1", features = ["v4"] }
|
||
|
|
chrono = { version = "0.4", features = ["serde"] }
|
||
|
|
tracing = "0.1"
|
||
|
|
sha2 = "0.10"
|
||
|
|
hex = "0.4"
|