26 lines
509 B
TOML
26 lines
509 B
TOML
[package]
|
|
name = "orpheus"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = {version = "4", features = ["derive"]}
|
|
actix-web = "4"
|
|
env_logger = "0.9"
|
|
tera = "1"
|
|
log = "0.4"
|
|
figment = {version = "0.10", features = ["yaml"]}
|
|
serde_yaml_bw = "2"
|
|
yaml-rust2 = "0.10"
|
|
yaml-merge-keys = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2"
|
|
mac_address2 = "2"
|
|
|
|
[profile.release]
|
|
target = "x86_64-unknown-linux-musl"
|
|
|
|
[profile.dev]
|
|
target = "x86_64-unknown-linux-musl"
|