rsoap 0.2.0

A SOAP client library for Rust with compile-time code generation from WSDL files
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"
rust-version = "1.75"
name = "rsoap"
version = "0.2.0"
authors = ["Slim Ouertani <ouertani@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A SOAP client library for Rust with compile-time code generation from WSDL files"
homepage = "https://github.com/ouertani/rsoap"
documentation = "https://docs.rs/rsoap"
readme = "README.md"
keywords = [
    "soap",
    "wsdl",
    "client",
    "proc-macro",
    "codegen",
]
categories = [
    "api-bindings",
    "development-tools::procedural-macro-helpers",
    "encoding",
]
license = "MIT"
repository = "https://github.com/ouertani/rsoap"

[features]
blocking = ["tokio/full"]
default = ["blocking"]

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

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

[dependencies.anyhow]
version = "1"

[dependencies.quick-xml]
version = "0.40"
features = ["serialize"]

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

[dependencies.rsoap-macros]
version = "0.2.0"

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

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["full"]
optional = true

[dev-dependencies.tokio]
version = "1"
features = [
    "full",
    "full",
    "test-util",
]

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