view Cargo.toml @ 25:390a448dc8c7

Support timezones
author Lewin Bormann <lbo@spheniscida.de>
date Wed, 13 Jul 2022 21:49:41 -0700
parents acf064f0e934
children 25439f8c9114
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"
rocket = { version = "0.5.0-rc.2", features = ["secrets", "json",] }
sqlx = { version = "0.5", features = ["macros"] }
rocket_db_pools = { version = "0.1.0-rc.2", features = [ "sqlx_macros"] }
rocket_dyn_templates = { version = "0.1.0-rc.2", features = ["handlebars"] }
sha256 = "1.0.3"
time = "0.3.11"
tokio = { version = "1.19.2", features = ["fs"] }

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

[workspace]
members = ["usertool"]