mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
903361100c
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
name = "tauri-plugin-http"
|
|
version = "2.0.0-alpha.3"
|
|
description = "Access an HTTP client written in Rust."
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = [ "tauri/dox" ]
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tauri-plugin-fs = { path = "../fs", version = "2.0.0-alpha.2" }
|
|
glob = "0.3"
|
|
http = "0.2"
|
|
reqwest = { version = "0.11", default-features = false }
|
|
url = "2.4"
|
|
data-url = "0.3"
|
|
|
|
[features]
|
|
multipart = [ "reqwest/multipart" ]
|
|
json = [ "reqwest/json" ]
|
|
stream = [ "reqwest/stream" ]
|
|
native-tls = [ "reqwest/native-tls" ]
|
|
native-tls-vendored = [ "reqwest/native-tls-vendored" ]
|
|
rustls-tls = [ "reqwest/rustls-tls" ]
|
|
default-tls = [ "reqwest/default-tls" ]
|
|
native-tls-alpn = [ "reqwest/native-tls-alpn" ]
|
|
rustls-tls-manual-roots = [ "reqwest/rustls-tls-manual-roots" ]
|
|
rustls-tls-webpki-roots = [ "reqwest/rustls-tls-webpki-roots" ]
|
|
rustls-tls-native-roots = [ "reqwest/rustls-tls-native-roots" ]
|
|
blocking = [ "reqwest/blocking" ]
|
|
cookies = [ "reqwest/cookies" ]
|
|
gzip = [ "reqwest/gzip" ]
|
|
brotli = [ "reqwest/brotli" ]
|
|
deflate = [ "reqwest/deflate" ]
|
|
trust-dns = [ "reqwest/trust-dns" ]
|
|
socks = [ "reqwest/socks" ]
|
|
http3 = [ "reqwest/http3" ]
|