starchart/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2022-03-27 23:45:31 +05:30
[package]
2022-04-02 16:28:56 +05:30
name = "starchart"
repository = "https://github.com/forgeflux-org/starchart"
version = "0.1.0"
2022-03-27 23:45:31 +05:30
authors = ["realaravinth <realaravinth@batsense.net>"]
description = "ForgeFlux StarChart - Federated forge spider"
2022-03-27 23:45:31 +05:30
documentation = "https://forgeflux.org/"
edition = "2021"
license = "AGPLv3 or later version"
2022-04-02 16:28:56 +05:30
build = "build.rs"
2022-03-27 23:45:31 +05:30
[dependencies]
actix-rt = "2.7"
2022-04-02 16:28:56 +05:30
config = "0.11.0"
lazy_static = "1.4.0"
rand = "0.8.5"
tera = "1.15"
2022-04-02 16:12:34 +05:30
tokio = { version = "1.17", features = ["fs", "time"] }
url = { version = "2.2.2", features = ["serde"] }
2022-04-02 16:28:56 +05:30
validator = { version = "0.14", features = ["derive"]}
derive_more = "0.99.17"
log = "0.4.16"
[dependencies.reqwest]
features = ["rustls-tls-native-roots", "gzip", "deflate", "brotli", "json"]
version = "0.11.10"
[dependencies.serde]
features = ["derive"]
version = "1"
[dependencies.serde_json]
version = "1"
2022-03-27 23:45:31 +05:30
[dependencies.trust-dns-resolver]
features = ["tokio-runtime", "dns-over-tls", "dns-over-rustls"]
version = "0.21.1"
#[workspace]
#exclude = ["db/migrator"]
#members = [".", "db/db-core", "db/db-sqlx-sqlite"]
# "db/db-sqlx-postgres"