27 lines
570 B
TOML
27 lines
570 B
TOML
[package]
|
|
name = "musicfs-server"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
default-run = "musicfs-server"
|
|
|
|
[[bin]]
|
|
name = "musicfs-server"
|
|
path = "src/bin/musicfs-server.rs"
|
|
|
|
[dependencies]
|
|
musicfs-core.workspace = true
|
|
musicfs-proto.workspace = true
|
|
tonic.workspace = true
|
|
tonic-health.workspace = true
|
|
tonic-reflection.workspace = true
|
|
tokio.workspace = true
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
clap.workspace = true
|
|
notify.workspace = true
|
|
tokio-stream.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|