mirror of
https://github.com/tauri-apps/tauri-plugin-http.git
synced 2026-01-31 00:45:17 +01:00
Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/5069740636 Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
27 lines
794 B
TOML
27 lines
794 B
TOML
[package]
|
|
name = "tauri-plugin-http"
|
|
version = "2.0.0-alpha.0"
|
|
description = "Access an HTTP client written in Rust."
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tauri-plugin-fs = { path = "../fs", version = "2.0.0-alpha.0" }
|
|
glob = "0.3"
|
|
rand = "0.8"
|
|
bytes = { version = "1", features = [ "serde" ] }
|
|
serde_repr = "0.1"
|
|
http = "0.2"
|
|
reqwest = { version = "0.11", default-features = false, features = [ "json", "stream" ] }
|
|
|
|
[features]
|
|
multipart = [ "reqwest/multipart" ]
|
|
native-tls = [ "reqwest/native-tls" ]
|
|
native-tls-vendored = [ "reqwest/native-tls-vendored" ]
|
|
rustls-tls = [ "reqwest/rustls-tls" ]
|