19 lines
356 B
TOML
19 lines
356 B
TOML
[package]
|
|
name = "table-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
toml_edit = "0.22"
|
|
actix-web = "4.4.0"
|
|
actix-files = "0.6.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tera = "1.19"
|
|
|
|
# Für TOML/INI-Konfiguration
|
|
config = "0.14"
|
|
toml = "0.8"
|
|
serde_derive = "1.0"
|