34 lines
1,013 B
TOML
34 lines
1,013 B
TOML
[package]
|
|
name = "ezidam"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
rocket = { version = "=0.5.0-rc.3", features = ["json"] }
|
|
rocket_db_pools = { version = "=0.1.0-rc.3", features = ["sqlx_sqlite"] }
|
|
rocket_dyn_templates = { version = "=0.1.0-rc.3", features = ["tera"] }
|
|
infer = { version = "0.13", default-features = false }
|
|
erased-serde = "0.3"
|
|
url = { workspace = true }
|
|
futures = "0.3"
|
|
base64 = "0.21.0"
|
|
rocket_cors = "0.6.0-alpha2"
|
|
email_address = { workspace = true }
|
|
chrono-tz = "0.8.2"
|
|
chrono-humanize = "0.2.2"
|
|
minify-html = "0.10.8"
|
|
|
|
# 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" }
|