-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (29 loc) · 763 Bytes
/
Cargo.toml
File metadata and controls
36 lines (29 loc) · 763 Bytes
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
[package]
name = "DrawsNotes"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async_once = "0.2.6"
dioxus = { version = "0.6", features= ["fullstack", "router"] }
lazy_static = "1.4.0"
log = "0.4.20"
manganis = "0.2.2"
serde = "1.0.193"
surrealdb = {version = "2.0.4", optional = true}
tokio = "1.35.1"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["tracing-log", "env-filter"] }
tracing-wasm = "0.2.1"
[features]
default = []
server = ["dioxus/server", "dep:surrealdb"]
web = ["dioxus/web"]
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"