rsurl 0.0.4

A pure-Rust implementation of curl. Library, C FFI, and CLI for HTTP/HTTPS/FTP/FTPS.
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.95"
name = "rsurl"
version = "0.0.4"
authors = ["Karpelès Lab Inc."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-Rust implementation of curl. Library, C FFI, and CLI for HTTP/HTTPS/FTP/FTPS."
readme = "README.md"
keywords = [
    "http",
    "https",
    "curl",
    "client",
    "tls",
]
categories = [
    "network-programming",
    "web-programming::http-client",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/KarpelesLab/rsurl"

[features]
default = ["purecrypto-tls"]
purecrypto-tls = []
rustls-tls = [
    "dep:rustls",
    "dep:rustls-pemfile",
]

[lib]
name = "rsurl"
crate-type = [
    "rlib",
    "cdylib",
    "staticlib",
]
path = "src/lib.rs"

[[bin]]
name = "rsurl"
path = "src/bin/rsurl.rs"

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

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

[dependencies.compcol]
version = "0.4"
features = [
    "std",
    "gzip",
    "zlib",
    "zstd",
    "brotli",
    "lzw",
]
default-features = false

[dependencies.purecrypto]
version = "0.2"

[dependencies.puressh]
version = "0.0.3"
features = [
    "client",
    "compress",
]
default-features = false

[dependencies.rustls]
version = "0.23"
features = [
    "std",
    "ring",
    "tls12",
    "logging",
]
optional = true
default-features = false

[dependencies.rustls-pemfile]
version = "2"
optional = true

[profile.release]
lto = "thin"
codegen-units = 1
strip = true