-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (46 loc) · 1.92 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (46 loc) · 1.92 KB
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
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "axum-session-auth-realworld-app-dioxus-sqlite"
version = "0.1.0"
authors = ["santhosh7403 <skumar7403@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dioxus = { version = "0.7.9", features = ["router", "fullstack"] }
dioxus-logger = {version = "0.7.9"}
dioxus-cli-config = {version = "0.7.9"}
serde = { version = "1", features = ["derive"]}
regex = { version = "1.10" }
sqlx = { version = "0.8", features = [
"runtime-tokio-rustls",
"sqlite",
"chrono",
],optional=true}
tracing = { version = "0.1" }
axum = {version ="0.8", optional = true}
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
argon2 = { version = "0.5", features = ["std"], optional = true }
axum_session = { version = "0.19", features = ["key-store"],optional = true }
axum_session_sqlx = { version = "0.8", features = ["sqlite"], optional = true }
axum_session_auth = { version = "0.19", optional = true }
async-trait = { version = "0.1.88", optional = true }
uuid = { version = "1.17", features = ["v7"], optional = true }
urlencoding = "2.1.3"
axum-extra = { version = "0.12", optional = true }
mail-send = { version = "0.6", optional = true }
serde_json = {version = "1"}
web-sys = { version = "0.3", features = ["Window", "Document", "Element", "Storage", "HtmlElement", "DomTokenList"] }
anyhow = "1.0.100"
chrono = {version = "0.4.44", optional = true}
nanoid = { version = "0.5", optional = true }
[features]
default = ["web"]
web = ["dioxus/web"]
server = ["dioxus/server", "dep:sqlx", "dep:tokio", "dep:axum", "dep:argon2", "dep:uuid","dep:axum-extra", "dep:mail-send", "dep:axum_session", "dep:axum_session_auth", "dep:async-trait", "dep:axum_session_sqlx", "dep:chrono", "dep:nanoid"]
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = "z"
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"