flowfull 0.1.0

Async Rust client for Flowfull and Flowless-compatible backends
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 = "2024"
rust-version = "1.85"
name = "flowfull"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Rust client for Flowfull and Flowless-compatible backends"
homepage = "https://www.pubflow.com"
documentation = "https://docs.rs/flowfull"
readme = "README.md"
keywords = [
    "flowfull",
    "flowless",
    "api",
    "client",
    "auth",
]
categories = [
    "api-bindings",
    "web-programming::http-client",
]
license = "AGPL-3.0-only"
repository = "https://github.com/pubflow/flowfull-rust"

[features]
blocking = ["reqwest/blocking"]
default = [
    "rustls-tls",
    "json",
    "multipart",
    "payments",
]
json = ["chrono/serde"]
middleware-actix = ["dep:actix-web"]
middleware-axum = [
    "dep:axum",
    "dep:tower",
    "dep:http",
]
multipart = [
    "reqwest/multipart",
    "tokio/fs",
]
native-tls = ["reqwest/native-tls"]
payments = []
rustls-tls = ["reqwest/rustls-tls"]
storage-file = ["tokio/fs"]

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

[[example]]
name = "auth"
path = "examples/auth.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "bridge_validator"
path = "examples/bridge_validator.rs"

[[example]]
name = "query"
path = "examples/query.rs"

[[test]]
name = "query_and_types"
path = "tests/query_and_types.rs"

[[test]]
name = "session_storage"
path = "tests/session_storage.rs"

[dependencies.actix-web]
version = "4"
optional = true

[dependencies.async-trait]
version = "0.1"

[dependencies.axum]
version = "0.8"
optional = true

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "std",
]
default-features = false

[dependencies.futures-util]
version = "0.3"

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

[dependencies.mime_guess]
version = "2"

[dependencies.reqwest]
version = "0.12"
features = ["json"]
default-features = false

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "time",
    "sync",
    "fs",
]

[dependencies.tower]
version = "0.5"
optional = true

[dependencies.url]
version = "2"

[dev-dependencies.pretty_assertions]
version = "1"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.wiremock]
version = "0.6"