Initial commit

This commit is contained in:
Kavin 2023-01-27 18:15:13 +00:00
commit 9d2953693b
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD
17 changed files with 1770 additions and 0 deletions

15
reqwest-jni/Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
name = "reqwest-jni"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
jni = "0.20.0"
reqwest = {version = "0.11.14", features = ["rustls-tls", "stream", "brotli", "gzip"], default-features = false}
tokio = {version = "1.24.2", features = ["full"]}
lazy_static = "1.4.0"
[lib]
crate-type = ["cdylib"]