[package] name = "llm-river" version = "0.1.0" authors = ["MrSnowy "] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bytes = "1.11.1" dioxus = { version = "0.7.9", features = [] } futures-core = "0.3.32" anyhow = "1.0.102" reqwest = { version = "0.13.3", features = ["blocking", "gzip", "json", "stream", "zstd"] } serde = "1.0.228" serde_json = "1.0.149" toml = "1.1.2" uuid = { version = "1.24.0", features = [ "v4", "serde" ]} async-stream = "0.3.6" futures-util = "0.3.34" tokio = "1.53.1" [target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies] dirs = "6.0.0" # jni = "0.22.4" [features] default = ["desktop"] desktop = ["dioxus/desktop"] mobile = ["dioxus/mobile"] web = ["dioxus/web"]