36 lines
787 B
TOML
36 lines
787 B
TOML
[package]
|
|
name = "lectern"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "lectern"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# UI Stack
|
|
gtk4 = { version = "0.7.3", features = ["v4_6"] }
|
|
glib = "0.17.10"
|
|
gdk4 = { version = "0.7.3", features = ["v4_6"] }
|
|
|
|
# Async & Networking
|
|
tokio = { version = "1.32", features = ["full", "fs", "process", "io-util"] }
|
|
reqwest = { version = "0.11", features = ["json", "multipart"] }
|
|
futures-util = "0.3.28"
|
|
|
|
# Serialization & Metadata
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
audiotags = "0.5.0"
|
|
|
|
# URL Encoding
|
|
urlencoding = "2.1"
|
|
dirs = "5.0"
|
|
once_cell = "1.21.3"
|
|
gdk-pixbuf = "0.21.5"
|
|
gstreamer = "0.20.0"
|
|
gstreamer-play = "0.20.0"
|
|
|
|
[dev-dependencies]
|
|
# For easier debugging of API responses
|
|
pretty_assertions = "1.4.0"
|