dioxus/Cargo.toml

36 lines
913 B
TOML
Raw Normal View History

2021-07-07 20:54:14 +00:00
[package]
2022-01-09 03:59:46 +00:00
name = "dioxus-cli"
2022-01-09 05:29:52 +00:00
version = "0.1.1"
2021-12-29 16:04:18 +00:00
authors = ["Jonathan Kelley"]
2021-07-07 20:54:14 +00:00
edition = "2018"
description = "CLI tool for developing, testing, and publishing Dioxus apps"
2022-01-09 05:29:52 +00:00
license = "MIT/Apache-2.0"
2021-07-07 20:54:14 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0.23"
log = "0.4.13"
2021-09-23 17:33:22 +00:00
fern = { version = "0.6.0", features = ["colored"] }
wasm-bindgen-cli-support = "0.2.78"
2021-07-07 20:54:14 +00:00
anyhow = "1.0.38"
2022-01-09 03:57:47 +00:00
serde = { version = "1.0.133", features = ["derive"] }
2021-12-29 16:04:18 +00:00
serde_json = "1"
fs_extra = "1.2.0"
2021-12-29 17:03:18 +00:00
cargo_toml = "0.10.0"
2021-07-07 20:54:14 +00:00
futures = "0.3.12"
2022-01-09 03:57:47 +00:00
notify = "4.0.17"
2021-12-29 17:03:18 +00:00
html_parser = "0.6.2"
2021-12-29 16:04:18 +00:00
tui = { version = "0.16.0", features = ["crossterm"] }
crossterm = "0.22.1"
binary-install = "0.0.2"
convert_case = "0.5.0"
structopt = "0.3.25"
cargo_metadata = "0.14.1"
2022-01-09 03:57:47 +00:00
tokio = { version = "1.15.0", features = ["full"] }
2022-01-09 05:23:58 +00:00
atty = "0.2.14"
2021-07-07 20:54:14 +00:00
[[bin]]
path = "src/main.rs"
name = "dioxus"