dioxus/packages/cli/Cargo.toml

33 lines
782 B
TOML
Raw Normal View History

2021-01-16 04:32:53 +00:00
[package]
2021-01-19 13:50:56 +00:00
name = "dioxus-cli"
2021-01-20 17:18:10 +00:00
version = "0.1.0"
2021-01-16 04:32:53 +00:00
authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
edition = "2018"
2021-01-20 17:18:10 +00:00
description = "CLI tool for developing, testing, and publishing Dioxus apps"
"license" = "MIT/Apache-2.0"
2021-01-16 04:32:53 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-01-20 17:20:25 +00:00
thiserror = "1.0.23"
log = "0.4.13"
2021-01-16 04:32:53 +00:00
fern = { version = "0.6.0", features = ["colored"] }
wasm-bindgen-cli-support = "0.2.69"
2021-01-20 17:20:25 +00:00
anyhow = "1.0.38"
2021-01-16 04:32:53 +00:00
argh = "0.1.4"
2021-01-20 17:20:25 +00:00
serde = "1.0.120"
serde_json = "1.0.61"
async-std = { version = "1.9.0", features = ["attributes"] }
2021-01-16 04:32:53 +00:00
tide = "0.15.0"
cargo_toml = "0.8.1"
fs_extra = "1.2.0"
2021-01-20 17:20:25 +00:00
notify = "5.0.0-pre.4"
futures = "0.3.12"
2021-01-16 04:32:53 +00:00
rjdebounce = "0.2.1"
2021-01-20 17:20:25 +00:00
tempfile = "3.2.0"
[[bin]]
path = "src/main.rs"
name = "dioxus"