dioxus-cookie 0.2.0

Unified cookie storage for Dioxus fullstack apps that fills the gap in native platforms with keychain integration and encrypted file-vault fallback for simulators
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "dioxus-cookie"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified cookie storage for Dioxus fullstack apps that fills the gap in native platforms with keychain integration and encrypted file-vault fallback for simulators"
documentation = "https://docs.rs/dioxus-cookie"
readme = "README.md"
keywords = [
    "cookies",
    "dioxus",
    "keyring",
    "storage",
]
categories = [
    "web-programming",
    "authentication",
]
license = "MIT"
repository = "https://github.com/rapporian/dioxus-cookie"

[package.metadata.docs.rs]
all-features = true

[features]
android-file = ["file-store"]
default = []
desktop = ["keyring"]
file-store = [
    "dep:aes-gcm",
    "dep:rand",
    "dep:sha2",
    "dep:hex",
    "dep:dirs",
]
keyring = [
    "dep:keyring",
    "dep:dirs",
    "dep:serde_json",
    "dep:dioxus",
    "dep:cookie_store",
]
mobile = ["keyring"]
mobile-sim = [
    "mobile",
    "file-store",
]
server = ["dep:dioxus"]

[lib]
name = "dioxus_cookie"
path = "src/lib.rs"

[dependencies.aes-gcm]
version = "0.10"
optional = true

[dependencies.cookie_store]
version = "0.22.0"
features = ["serde_json"]
optional = true

[dependencies.dioxus]
version = "0.7"
features = ["fullstack"]
optional = true

[dependencies.dirs]
version = "6"
optional = true

[dependencies.hex]
version = "0.4"
optional = true

[dependencies.keyring]
version = "3"
features = [
    "apple-native",
    "linux-native",
    "windows-native",
]
optional = true

[dependencies.rand]
version = "0.9"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.sha2]
version = "0.10"
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.urlencoding]
version = "2"

[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = [
    "Window",
    "Document",
    "HtmlDocument",
]

[target.'cfg(target_os = "android")'.dependencies.android-keyring]
version = "0.2"