view Cargo.toml @ 80:d3368a7142ef default tip

Make analyrics build again and add Cargo.lock
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 27 Apr 2024 20:34:05 +0200
parents 2a7b358c2710
children
line wrap: on
line source

[package]
name = "analyrics"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.58"
either = "1.7.0"
env_logger = "0.9.0"
log = "0.4.17"
rand = "0.8"
sqlx = { version = "0.7", features = ["macros", "runtime-tokio-rustls"] }
sha256 = "1.0.3"
time = { version = "0.3.11", features = ["serde", "serde-well-known"] }
tokio = { version = "1.19.2", features = ["fs"] }
maxminddb = "0.23.0"

rocket = { version = "0.5.0", features = ["secrets", "json"] }
rocket_db_pools = { version = "0.1.0", features = [ "sqlx_macros"] }
rocket_dyn_templates = { version = "0.1.0", features = ["handlebars"] }

[features]
default = ["sqlite"]
sqlite = ["rocket_db_pools/sqlx_sqlite", "sqlx/sqlite"]
postgres = ["rocket_db_pools/sqlx_postgres"]

[workspace]
members = ["usertool"]