63 lines
2.4 KiB
TOML
63 lines
2.4 KiB
TOML
[package]
|
|
name = "plasmavmc-server"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
description = "PlasmaVMC control plane server"
|
|
|
|
[[bin]]
|
|
name = "plasmavmc-server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
plasmavmc-types = { workspace = true }
|
|
plasmavmc-api = { workspace = true }
|
|
plasmavmc-hypervisor = { workspace = true }
|
|
plasmavmc-kvm = { workspace = true }
|
|
plasmavmc-firecracker = { workspace = true }
|
|
iam-service-auth = { path = "../../../iam/crates/iam-service-auth" }
|
|
tonic = { workspace = true }
|
|
tonic-health = { workspace = true }
|
|
prost = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
clap = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
metrics-exporter-prometheus = { workspace = true }
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
|
|
chainfire-client = { path = "../../../chainfire/chainfire-client" }
|
|
creditservice-client = { path = "../../../creditservice/creditservice-client" }
|
|
flaredb-client = { path = "../../../flaredb/crates/flaredb-client" }
|
|
prismnet-api = { path = "../../../prismnet/crates/prismnet-api" }
|
|
iam-client = { path = "../../../iam/crates/iam-client" }
|
|
iam-types = { path = "../../../iam/crates/iam-types" }
|
|
lightningstor-api = { path = "../../../lightningstor/crates/lightningstor-api" }
|
|
bytes = { workspace = true }
|
|
|
|
# REST API dependencies
|
|
axum = "0.8"
|
|
uuid = { version = "1.11", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
chrono = "0.4"
|
|
chainfire-server = { path = "../../../chainfire/crates/chainfire-server" }
|
|
flaredb-server = { path = "../../../flaredb/crates/flaredb-server" }
|
|
flaredb-proto = { path = "../../../flaredb/crates/flaredb-proto" }
|
|
iam-api = { path = "../../../iam/crates/iam-api" }
|
|
prismnet-server = { path = "../../../prismnet/crates/prismnet-server" }
|
|
prismnet-types = { path = "../../../prismnet/crates/prismnet-types" }
|
|
creditservice-api = { path = "../../../creditservice/crates/creditservice-api" }
|
|
creditservice-proto = { path = "../../../creditservice/crates/creditservice-proto" }
|
|
|
|
[lints]
|
|
workspace = true
|