29 lines
1 KiB
TOML
29 lines
1 KiB
TOML
[package]
|
|
name = "acrate_rdserver"
|
|
version = "0.3.0"
|
|
authors = ["Stefano Pigozzi <me@steffo.eu>"]
|
|
edition = "2021"
|
|
description = "Resource descriptor web server for the acrate project"
|
|
repository = "https://forge.steffo.eu/unimore/tirocinio-canali-steffo-acrate"
|
|
license = "EUPL-1.2"
|
|
keywords = ["jrd", "xrd", "hostmeta", "webfinger", "resource-descriptor"]
|
|
categories = ["web-programming"]
|
|
|
|
[dependencies]
|
|
acrate_database = { path = "../acrate_database" }
|
|
acrate_rd = { path = "../acrate_rd" }
|
|
anyhow = "1.0.93"
|
|
axum = { version = "0.7.7", features = ["macros"] }
|
|
axum-extra = { version = "0.9.4", features = ["query"] }
|
|
log = "0.4.22"
|
|
micronfig = "0.3.0"
|
|
minijinja = "2.5.0"
|
|
pretty_env_logger = "0.5.0"
|
|
quick-xml = { version = "0.37.0", features = ["serialize"] }
|
|
serde = { version = "1.0.215", features = ["derive"] }
|
|
serde_json = "1.0.132"
|
|
tokio = { version = "1.41.1", features = ["macros", "net", "rt-multi-thread"] }
|
|
mediatype = { version = "0.19.18", features = ["serde"] }
|
|
|
|
[lints.clippy]
|
|
tabs-in-doc-comments = "allow"
|