-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
90 lines (86 loc) · 2.72 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
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
80
81
82
83
84
85
86
87
88
89
90
[workspace]
members = ["backend", "common", "frontend", "macros"]
resolver = "2"
[workspace.dependencies]
common = { path = "common" }
lib = { path = "lib" }
macros = { path = "macros" }
anyhow = "1.0.75"
async-trait = "0.1.77"
axum = "0.7.2"
axum-extra = { version = "0.9.1", features = ["cookie"] }
axum-macros = "0.4.0"
axum-test = "14.0.0"
cfg-if = "1.0.0"
chrono = { version = "0.4.31", features = ["serde"] }
console_error_panic_hook = "0.1.7"
console_log = "1.0.0"
derive_builder = "0.12.0"
dotenv = "0.15.0"
email_address = "0.2.4"
figment = { version = "0.10.12", features = ["env", "toml"] }
futures = "0.3.30"
futures-util = "0.3.30"
hyper = "1.0.1"
hyper-util = { version = "0.1.1", features = [
"http1",
"server-auto",
"tokio",
] }
icondata = "0.3"
indexmap = "2.1.0"
leptos = "0.6.9"
# leptos-struct-table = { version = "0.6.0", features = ["chrono", "uuid"] }
leptos-struct-table = { git = "https://github.com/pscott31/leptos-struct-table", branch = "leptos_0.6", features = [
"chrono",
"uuid",
] }
# leptos-use = { version = "0.9.0", features = ["serde", "serde_json"] }
leptos-use = { git = "https://github.com/pscott31/leptos-use", branch = "leptos_0.6" }
leptos_axum = "0.6.9"
leptos_icons = { git = "https://github.com/pscott31/leptos-icons", branch = "leptos_0.6" }
# leptos_icons = { version = "0.1.0" }
leptos_macro = "0.6.9"
leptos_router = "0.6.9"
log = "0.4.20"
mime_guess = "2.0.4"
oauth2 = { version = "4.4.2", default-features = false }
once_cell = "1.19.0"
parking_lot = "0.12.1"
phonenumber = "0.3.3"
rand = "0.8.5"
reqwest = { version = "0.11.22", default-features = false, features = [
"cookies",
"json",
"rustls-tls",
"trust-dns",
] }
rust-embed = "8.2.0"
rust_decimal = "1.33.1"
rust_decimal_macros = "1.33.1"
sanitizer = "0.1.6"
scopeguard = "1.2.0"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
serde_qs = "0.12"
sha256 = "1.4.0"
surrealdb = { version = "1.0.0" } # surrealdb = { version = "1.0.0", features = ["kv-mem", "kv-rocksdb"] }
tokio = { version = "1.34.0", features = [
"full",
"macros",
"rt-multi-thread",
] }
tokio-util = "0.7.10"
tower = "0.4.13"
tower-http = "0.5.1"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.0"
uuid = "1.6.1"
wasm-bindgen-cli-support = "0.2.92"
# # TODO - just for wasm?
# [profile.release]
# # inherits = "release"
# opt-level = 'z'
# lto = true
# codegen-units = 1