Files
CarrotPrint/Cargo.toml

22 lines
640 B
TOML
Raw Normal View History

[package]
name = "print-backend"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1"
async-trait = "0.1"
axum = { version = "0.7", features = ["multipart", "json"] }
base64 = "0.21"
config = { version = "0.14", default-features = false, features = ["yaml"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
thiserror = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs", "signal", "net"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
tower-http = { version = "0.5", features = ["trace"] }
cups_rs = "0.3"
tempfile = "3"