2019-08-02 10:47:16 +00:00
|
|
|
[package]
|
|
|
|
name = "qchgk_web"
|
2023-08-18 08:14:36 +00:00
|
|
|
version = "0.2.0"
|
2019-08-02 10:47:16 +00:00
|
|
|
authors = ["Dmitry <b4tm4n@mail.ru>"]
|
2022-10-03 21:06:08 +00:00
|
|
|
edition = "2021"
|
2022-10-03 21:11:17 +00:00
|
|
|
license = "MIT"
|
2022-10-03 21:17:02 +00:00
|
|
|
readme = "README.md"
|
2019-08-02 10:47:16 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2019-08-05 14:06:27 +00:00
|
|
|
|
2019-08-02 10:47:16 +00:00
|
|
|
[dependencies]
|
2022-10-03 21:06:08 +00:00
|
|
|
rand="0.8"
|
2023-08-05 16:21:00 +00:00
|
|
|
rocket = { version = "=0.5.0-rc.3", features = ["json"] }
|
|
|
|
rocket_dyn_templates = { version = "=0.1.0-rc.3", features = ["tera"] }
|
2023-08-16 09:20:04 +00:00
|
|
|
chgk_ledb_lib = {git = "https://gitea.b4tman.ru/b4tman/chgk_ledb.git", rev="699478f85e", package="chgk_ledb_lib", features=["async"]}
|
2023-04-04 08:39:52 +00:00
|
|
|
mini-moka = "0.10.0"
|
2023-08-20 10:44:17 +00:00
|
|
|
lazy_static = "1.4.0"
|
2019-08-05 14:06:27 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
lto = true
|
2022-10-03 21:06:08 +00:00
|
|
|
strip = true
|
2023-08-05 16:21:00 +00:00
|
|
|
|