1234567891011121314151617181920212223242526272829303132333435363738 |
- [package]
- name = "dioxus-mobile"
- version = { workspace = true }
- authors = ["Jonathan Kelley"]
- edition = "2021"
- description = "Mobile-compatible renderer for Dioxus"
- repository = "https://github.com/DioxusLabs/dioxus/"
- homepage = "https://dioxuslabs.com/learn/0.6/getting_started"
- keywords = ["dom", "ui", "gui", "react"]
- license = "MIT OR Apache-2.0"
- rust-version = "1.71.1"
- [dependencies]
- dioxus-desktop = { workspace = true }
- dioxus-lib = { workspace = true }
- dioxus-cli-config = { workspace = true }
- libc = "0.2.170"
- [target.'cfg(target_os = "android")'.dependencies]
- jni = "0.21.1"
- [features]
- default = ["jnibindings", "tokio_runtime", "devtools"]
- jnibindings = []
- tokio_runtime = ["dioxus-desktop/tokio_runtime"]
- fullscreen = ["dioxus-desktop/fullscreen"]
- transparent = ["dioxus-desktop/transparent"]
- devtools = ["dioxus-desktop/devtools"]
- gnu = ["dioxus-desktop/gnu"]
- [lib]
- doctest = false
- # tests suspended until package ready
- test = false
- [package.metadata.docs.rs]
- cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|