-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (35 loc) · 946 Bytes
/
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
[package]
name = "smp-fs"
version = "0.1.0"
authors = ["65787978"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dioxus = { version = "0.5.2", features = ["fullstack", "router"] }
serde = "1.0.159"
simple_logger = "5.0.0"
tracing-wasm = "0.2.1"
tracing-subscriber = "0.3.17"
reqwest = { version = "0.12.5", features = ["json"] }
tracing = "0.1.40"
manganis = "0.2.2"
dioxus-fullstack = "0.5.6"
serde_json = "1.0.117"
chrono = "0.4.38"
gloo = { version = "0.11.0", features = ["futures"] }
cached = { version = "0.53.1", features = ["async"] }
charming = { version = "0.3.1", features = ["wasm"] }
dioxus-use-window = "0.7.0"
dioxus-logger = "0.5.1"
[features]
default = []
server = ["dioxus/axum"]
web = ["dioxus/web"]
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"