35 lines
1,020 B
TOML
35 lines
1,020 B
TOML
[package]
|
|
name = "ezidam"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
rocket = { version = "0.5.0", features = ["json"] }
|
|
rocket_db_pools = { version = "0.1.0", features = ["sqlx_sqlite"] }
|
|
rocket_dyn_templates = { version = "0.1.0", features = ["tera"] }
|
|
infer = { version = "0.15", default-features = false }
|
|
erased-serde = "0.3"
|
|
url = { workspace = true }
|
|
futures = "0.3"
|
|
base64 = "0.21"
|
|
rocket_cors = "0.6"
|
|
email_address = { workspace = true }
|
|
chrono-tz = "0.8"
|
|
chrono-humanize = "0.2"
|
|
minify-html = "0.11"
|
|
|
|
# local crates
|
|
database_pool = { path = "../database_pool" }
|
|
settings = { path = "../settings" }
|
|
users = { path = "../users" }
|
|
id = { path = "../id" }
|
|
hash = { path = "../hash" }
|
|
openid = { path = "../openid" }
|
|
jwt = { path = "../jwt" }
|
|
apps = { path = "../apps" }
|
|
authorization_codes = { path = "../authorization_codes" }
|
|
refresh_tokens = { path = "../refresh_tokens" }
|
|
email = { path = "../email" }
|
|
totp = { path = "../totp" }
|
|
roles = { path = "../roles" }
|
|
permissions = { path = "../permissions" }
|