2022-10-06 12:54:25 +00:00
|
|
|
[package]
|
|
|
|
name = "tildes-statistics"
|
|
|
|
description = "Statistics for Tildes.net."
|
2023-06-09 17:38:02 +00:00
|
|
|
repository = "https://git.bauke.xyz/tildes-community/tildes-statistics"
|
2022-10-06 12:54:25 +00:00
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Bauke <me@bauke.xyz>"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "tildes-statistics"
|
|
|
|
path = "source/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-07 12:28:13 +00:00
|
|
|
askama = "0.12.0"
|
2022-10-06 12:54:25 +00:00
|
|
|
async-std = "1.12.0"
|
|
|
|
chrono = "0.4.22"
|
|
|
|
color-eyre = "0.6.2"
|
|
|
|
dotenvy = "0.15.5"
|
2022-10-06 21:54:53 +00:00
|
|
|
grass = "0.11.2"
|
2023-06-24 08:57:11 +00:00
|
|
|
scraper = "0.16.0"
|
2023-06-07 12:28:13 +00:00
|
|
|
sea-orm-migration = "0.11.3"
|
2022-10-06 12:54:25 +00:00
|
|
|
tracing = "0.1.36"
|
|
|
|
|
|
|
|
[dependencies.clap]
|
|
|
|
features = ["derive"]
|
|
|
|
version = "4.0.10"
|
|
|
|
|
2022-10-06 17:14:17 +00:00
|
|
|
[dependencies.plotters]
|
|
|
|
default-features = false
|
2022-10-07 13:06:09 +00:00
|
|
|
features = ["line_series", "point_series", "svg_backend"]
|
2022-10-06 17:14:17 +00:00
|
|
|
version = "0.3.4"
|
|
|
|
|
2022-10-06 12:54:25 +00:00
|
|
|
[dependencies.sea-orm]
|
|
|
|
features = ["macros", "mock", "runtime-async-std-rustls", "sqlx-postgres"]
|
2023-06-07 12:28:13 +00:00
|
|
|
version = "0.11.3"
|
2022-10-06 12:54:25 +00:00
|
|
|
|
|
|
|
[dependencies.surf]
|
|
|
|
default-features = false
|
|
|
|
features = ["encoding", "h1-client-rustls", "middleware-logger"]
|
|
|
|
version = "2.3.2"
|
|
|
|
|
|
|
|
[dependencies.tildes-parser]
|
2023-06-09 17:38:02 +00:00
|
|
|
git = "https://git.bauke.xyz/tildes-community/tildes-parser.git"
|
2023-06-24 08:57:11 +00:00
|
|
|
rev = "6f0d4d394d533a331b0c9cf19fe80d60f0865ca7"
|
2022-10-06 12:54:25 +00:00
|
|
|
|
|
|
|
[dependencies.tracing-subscriber]
|
|
|
|
features = ["env-filter"]
|
|
|
|
version = "0.3.15"
|