dioxus/Cargo.toml

100 lines
2.5 KiB
TOML
Raw Normal View History

2021-07-07 16:54:14 -04:00
[package]
2022-01-08 22:59:46 -05:00
name = "dioxus-cli"
2022-12-11 12:57:25 -08:00
version = "0.3.0"
2021-12-29 11:04:18 -05:00
authors = ["Jonathan Kelley"]
2022-06-12 03:31:35 -04:00
edition = "2021"
2021-07-07 16:54:14 -04:00
description = "CLI tool for developing, testing, and publishing Dioxus apps"
2022-01-09 00:29:52 -05:00
license = "MIT/Apache-2.0"
2021-07-07 16:54:14 -04:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-03-12 13:00:07 +08:00
2022-02-08 00:51:21 +08:00
# cli core
2022-03-20 20:32:28 -04:00
clap = { version = "3.0.14", features = ["derive"] }
2022-02-07 05:28:18 +08:00
thiserror = "1.0.30"
2023-02-16 16:35:35 -08:00
wasm-bindgen-cli-support = "0.2.83"
2022-07-06 16:16:16 +08:00
colored = "2.0.0"
2022-03-12 13:00:07 +08:00
2022-02-08 00:51:21 +08:00
# features
2022-02-07 05:28:18 +08:00
log = "0.4.14"
2021-09-23 13:33:22 -04:00
fern = { version = "0.6.0", features = ["colored"] }
2022-02-07 05:28:18 +08:00
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
2022-01-23 12:11:17 +08:00
toml = "0.5.8"
2021-12-29 11:04:18 -05:00
fs_extra = "1.2.0"
2022-02-07 05:28:18 +08:00
cargo_toml = "0.11.4"
futures = "0.3.21"
2022-08-15 07:47:19 -04:00
notify = { version = "5.0.0-pre.16", features = ["serde"] }
2021-12-29 12:03:18 -05:00
html_parser = "0.6.2"
2021-12-29 11:04:18 -05:00
binary-install = "0.0.2"
convert_case = "0.5.0"
2022-07-09 14:16:19 +08:00
cargo_metadata = "0.15.0"
2022-02-07 05:28:18 +08:00
tokio = { version = "1.16.1", features = ["full"] }
2022-01-09 00:23:58 -05:00
atty = "0.2.14"
2022-01-24 05:55:40 +08:00
regex = "1.5.4"
2022-01-27 12:09:54 +08:00
chrono = "0.4.19"
2022-02-09 16:11:02 +08:00
anyhow = "1.0.53"
hyper = "0.14.17"
2022-07-09 14:16:19 +08:00
indicatif = "0.17.0-rc.11"
2021-07-07 16:54:14 -04:00
2022-04-17 11:24:17 +08:00
axum = { version = "0.5.1", features = ["ws", "headers"] }
2022-02-07 05:28:18 +08:00
tower-http = { version = "0.2.2", features = ["fs", "trace"] }
headers = "0.3.7"
2022-05-07 16:25:23 +08:00
2022-05-10 10:31:02 +08:00
walkdir = "2"
2022-03-12 13:00:07 +08:00
# tools download
dirs = "4.0.0"
2022-12-07 12:55:28 -08:00
reqwest = { version = "0.11", features = [
"rustls-tls",
"stream",
"trust-dns",
"blocking",
] }
2022-03-13 13:19:54 +08:00
flate2 = "1.0.22"
tar = "0.4.38"
2022-05-07 16:25:23 +08:00
zip = "0.6.2"
2022-03-26 18:33:18 -06:00
tower = "0.4.12"
2022-01-22 21:23:30 +08:00
2022-08-26 16:28:46 -05:00
syn = { version = "1.0", features = ["full", "extra-traits"] }
2022-12-11 13:01:50 -08:00
2022-07-10 11:28:20 +08:00
2022-06-14 09:47:16 -05:00
proc-macro2 = { version = "1.0", features = ["span-locations"] }
2022-09-21 22:57:26 -07:00
lazy_static = "1.4.0"
2022-06-09 11:58:09 -05:00
2022-07-24 19:00:43 +08:00
# plugin packages
2022-12-07 12:55:28 -08:00
mlua = { version = "0.8.1", features = [
"lua54",
"vendored",
"async",
"send",
"macros",
] }
2022-09-21 22:57:26 -07:00
ctrlc = "3.2.3"
2022-12-18 21:00:31 -06:00
# dioxus-rsx = "0.0.1"
2023-02-16 16:35:35 -08:00
gitignore = "1.0.7"
dioxus-rsx = { path = "../../dioxus/packages/rsx" }
dioxus-html = { path = "../../dioxus/packages/html", features = [
"hot-reload-context",
] }
2023-02-16 16:35:35 -08:00
dioxus-core = { path = "../../dioxus/packages/core", features = ["serialize"] }
dioxus-autofmt = { path = "../../dioxus/packages/autofmt" }
rsx-rosetta = { path = "../../dioxus/packages/rsx-rosetta" }
# dioxus-rsx = { git = "https://github.com/DioxusLabs/dioxus" }
# dioxus-html = { git = "https://github.com/DioxusLabs/dioxus", features = [
# "hot-reload-context",
# ] }
# dioxus-core = { git = "https://github.com/DioxusLabs/dioxus", features = [
# "serialize",
# ] }
# dioxus-autofmt = { git = "https://github.com/dioxuslabs/dioxus" }
# rsx-rosetta = { git = "https://github.com/dioxuslabs/dioxus" }
2022-04-24 03:24:41 -04:00
2021-07-07 16:54:14 -04:00
[[bin]]
path = "src/main.rs"
2022-08-26 16:28:46 -05:00
2021-07-07 16:54:14 -04:00
name = "dioxus"