ovlach_pdf/Cargo.toml

33 lines
1.0 KiB
TOML
Raw Normal View History

2023-11-27 19:38:32 +00:00
[package]
name = "ovlach_pdf"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_yaml = "0.9.27"
serde = { version = "1.0", features = ["derive"] }
log = "0.4.20"
fern = "0.6.2"
rocket = { version = "0.5.0", features = ["json"] }
headless_chrome = "1.0.8"
2023-11-27 21:56:10 +00:00
async-trait = "0.1.74"
async-mutex = "1.4.0"
2023-11-28 08:45:03 +00:00
tokio = { version = "1.34.0", features = ["macros"] }
2023-11-28 16:09:50 +00:00
tracing = { version = "0.1.40", features = ["attributes", "std"] }
2023-11-28 17:17:11 +00:00
yansi = "0.5.1"
2023-11-29 13:04:36 +00:00
tera = "1.19.1"
tempfile = "3.8.1"
2023-12-01 23:52:53 +00:00
urlencoding = "2.1.3"
2023-12-03 20:43:12 +00:00
nanobyte_opentelemetry = { version = "0.2.3", registry = "gitea_nanobyte", features = ["rocket-reqwest"]}
2023-12-01 23:52:53 +00:00
reqwest = { version = "0.11", features = ["json"] }
phf = { version = "0.11.2", features = ["macros"] }
2023-12-03 20:43:12 +00:00
nanobyte_tera = { version = "0.2.0", registry = "gitea_nanobyte" }
ovlach_tera = { version="0.2.0", registry="gitea_ovlach" }
2023-12-07 22:28:11 +00:00
ovlach_data = { version = "0.1.3", registry = "gitea_ovlach"}
2023-12-01 23:52:53 +00:00
2023-12-03 20:43:12 +00:00
[dev-dependencies]
serde_json = "1.0.108"