16 lines
444 B
TOML
16 lines
444 B
TOML
[package]
|
|
name = "ProjectD"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dioxus = "0.3.2"
|
|
dioxus-logger = "0.3.0"
|
|
dioxus-router = { version = "0.3.0", features = ["wasm-bindgen", "wasm_test", "web"] }
|
|
dioxus-web = "0.3.1"
|
|
log = "0.4.17"
|
|
ProjectF = { path = "../ProjectF" }
|
|
reqwest = { version = "0.11.16", features = ["json", "blocking"] }
|