ferret/Cargo.toml

28 lines
772 B
TOML
Raw Normal View History

2023-07-25 18:52:19 +00:00
[workspace]
members = [ "crawler", "core", "frontend" ]
[workspace.package]
edition = "2021"
2023-07-25 18:59:47 +00:00
authors = [ "Erin Nova <erin@the-system.eu.org" ]
2023-07-25 18:52:19 +00:00
homepage = "https://ferret.lavender.software"
license = "AGPL-3.0-or-later"
[workspace.dependencies]
config = "0.13.3"
2023-07-25 19:24:14 +00:00
dirs = "5.0.1"
2023-07-25 18:52:19 +00:00
tokio = { version = "1.29.1", features = ["full"] }
2023-07-25 19:24:14 +00:00
url = { version = "2.4.0", features = [ "serde" ] }
2023-07-25 20:11:09 +00:00
log = "0.4.0"
env_logger = "0.9.0"
2023-07-25 22:16:45 +00:00
chrono = { version = "0.4.26", features = [ "serde" ] }
2023-07-25 23:28:17 +00:00
sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-rustls", "chrono", "macros", "sqlite" ] }
scraper = "0.17.1"
2023-07-26 01:47:03 +00:00
axum = { version = "0.6.19", features = [ "http2", "tracing" ] }
2023-07-26 03:24:29 +00:00
tracing-subscriber = "0.3.17"
tracing = "0.1.37"
2023-07-25 18:59:47 +00:00
[profile.release]
strip = true
lto = "fat"
codegen-units = 1