1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- [package]
- name = "dioxus"
- version = "0.1.0"
- authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
- edition = "2018"
- description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
- "license" = "MIT/Apache-2.0"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- dioxus-core = { path = "./packages/core" }
- dioxus-core-macro = { path = "./packages/core-macro", optional = true }
- dioxus-html = { path = "./packages/html", optional = true }
- dioxus-web = { path = "./packages/web", optional = true }
- dioxus-desktop = { path = "./packages/desktop", optional = true }
- dioxus-hooks = { path = "./packages/hooks", optional = true }
- dioxus-ssr = { path = "./packages/ssr", optional = true }
- dioxus-mobile = { path = "./packages/mobile", optional = true }
- [features]
- # core
- default = ["core", "ssr"]
- core = ["macro", "hooks", "html"]
- macro = ["dioxus-core-macro"]
- hooks = ["dioxus-hooks"]
- html = ["dioxus-html"]
- # utilities
- atoms = []
- router = []
- # targets
- ssr = ["dioxus-ssr"]
- web = ["dioxus-web"]
- desktop = ["dioxus-desktop"]
- mobile = ["dioxus-mobile"]
- [dev-dependencies]
- futures-util = "0.3.16"
- log = "0.4.14"
- num-format = "0.4.0"
- separator = "0.4.1"
- serde = { version = "1.0.126", features = ["derive"] }
- im-rc = "15.0.0"
- fxhash = "0.2.1"
- anyhow = "1.0.42"
- [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
- argh = "0.1.5"
- env_logger = "*"
- async-std = { version = "1.9.0", features = ["attributes"] }
- rand = { version = "0.8.4", features = ["small_rng"] }
- surf = { version = "2.2.0", git = "https://github.com/jkelleyrtp/surf/", branch = "jk/fix-the-wasm" }
- gloo-timers = "0.2.1"
- [target.'cfg(target_arch = "wasm32")'.dev-dependencies]
- gloo-timers = "0.2.1"
- wasm-logger = "0.2.0"
- console_error_panic_hook = "0.1.6"
- rand = { version = "0.8.4", features = ["small_rng"] }
- wasm-bindgen = { version = "0.2.71", features = ["enable-interning"] }
- # surf = { version = "2.2.0", default-features = false, features = [
- # "wasm-client",
- # ], git = "https://github.com/jkelleyrtp/surf/", branch = "jk/fix-the-wasm" }
- [dev-dependencies.getrandom]
- version = "0.2"
- features = ["js"]
- [workspace]
- members = [
- "packages/core",
- "packages/core-macro",
- "packages/html",
- "packages/hooks",
- "packages/web",
- "packages/ssr",
- "packages/desktop",
- "packages/mobile",
- ]
- [[example]]
- required-features = ["desktop"]
- name = "webview"
- path = "./examples/webview.rs"
- [[example]]
- required-features = ["desktop"]
- name = "tailwind"
- path = "./examples/tailwind.rs"
|