-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (69 loc) · 3.15 KB
/
Copy pathCargo.toml
File metadata and controls
79 lines (69 loc) · 3.15 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "penguin_nurse"
version = "0.1.0"
authors = ["Brian May <brian@linuxpenguins.xyz>"]
edition = "2024"
license = "AGPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "lint"
path = "src/bin/lint.rs"
required-features = ["cli-only"]
[dependencies]
# dioxus = { git = "https://github.com/DioxusLabs/dioxus", branch = "main" }
# dioxus-router = { git = "https://github.com/DioxusLabs/dioxus", branch = "main" }
# dioxus-fullstack = { git = "https://github.com/DioxusLabs/dioxus", branch = "main" }
dioxus = { version = "0.7.0" , features = ["router", "fullstack"] }
dioxus-router = { version = "0.7.0" }
dioxus-fullstack = { version = "0.7.0" }
dioxus-cli-config = { version = "*", optional = true }
chrono = { version = "0.4.42", features = ["serde"] }
tracing = { version = "0.1.43" }
diesel = { version = "2.3.10", features = ["postgres", "chrono", "serde_json", "numeric", "64-column-tables"], optional = true }
axum = { version = "0.8.9", optional = true }
diesel-async = { version = "0.9.0", features = ["async-connection-wrapper", "bb8", "postgres"], optional = true }
diesel-derive-enum = { version = "3.0.0-beta.1", features = ["postgres"], optional = true }
diesel_migrations = { version = "2.2.0", features = ["postgres"], optional = true }
tokio = { version = "1.50.0", optional = true, features = ["full"] }
tracing-subscriber = { version = "0.3.20", optional = true }
tower-sessions = { version = "0.14.0", optional = true }
thiserror = "2.0.17"
async-trait = "0.1.89"
bb8 = { version = "0.9.1", optional = true }
tap = "1.0.1"
serde = { version = "1.0.228", features = ["rc"] }
serde_json = "1.0.150"
base64 = "0.22.1"
time = "0.3.46"
#tower-sessions-core = { git = "https://github.com/maxcountryman/tower-sessions", features = ["deletion-task"], optional = true }
tower-sessions-core = { version = "0.14.0", features = ["deletion-task"], optional = true }
getrandom = { version = "0.4.0", features = ["wasm_js"] }
axum-login = { version = "0.18.0", optional = true }
password-auth = { version = "1.0.0", optional = true }
palette = { version = "0.7.6", features = ["serde", "serializing"] }
openid = { version = "0.23.0", optional = true, features = ["rustls"], default-features = false }
arc-swap = { version = "1.7.1", optional = true }
url = { version = "2.5.7", optional = true }
futures = "0.3.31"
gloo-timers = { version = "0.4.0", features = ["futures"] }
classes = "1.0.0"
# rust_decimal = { version = "1.37.2", features = ["serde"] }
bigdecimal = { version = "0.4.8", features = ["serde"] }
pulldown-cmark = "0.13.1"
itertools = "0.15.0"
derive-enum-all-values = "0.2.1"
[features]
default = ["web"]
web = ["dioxus/web"]
desktop = ["dioxus/desktop"]
mobile = ["dioxus/mobile"]
server = ["dioxus/server", "dioxus-cli-config", "tokio", "axum", "diesel", "diesel-async", "diesel-derive-enum", "diesel_migrations", "tracing-subscriber", "tower-sessions", "tower-sessions-core", "bb8", "axum-login", "password-auth", "openid", "arc-swap", "url"]
cli-only = ["server"]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"
[dev-dependencies]