-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (40 loc) · 1.06 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "simple_bulletin"
version = "0.1.0"
edition = "2021"
default-run = "simple_bulletin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true
panic = 'abort'
strip = true
codegen-units = 1
[[bin]]
name = "newadmin"
path = "./src/newadmin.rs"
[[bin]]
name = "newuser"
path = "./src/newuser.rs"
[dependencies]
anyerror = "0.1.12"
anyhow = "1.0.82"
askama = { version = "0.12.1" }
askama_axum = "0.4.0"
async-trait = "0.1.79"
axum = "0.7.4"
axum-login = "0.15.0"
axum_csrf = { version = "^0.9.0", features = ["layer"] }
clap = { version = "4.5.4", features = ["derive"] }
data-encoding = "2.5.0"
env_logger = "0.11.3"
log = "0.4.21"
password-auth = "1.0.0"
ring = "0.17.8"
rpassword = "7.3.1"
serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio"] }
thiserror = "1.0.58"
tokio = { version = "1.37.0", features = ["full"] }
tower-sessions = "0.12.1"
uuid = { version = "1.8.0", features = ["v4"] }