RPM build fix (reverted CI changes which will need to be un-reverted or made conditional) and vendor Rust dependencies to make builds much faster in any CI system.
This commit is contained in:
42
zeroidc/vendor/reqwest/examples/json_dynamic.rs
vendored
Normal file
42
zeroidc/vendor/reqwest/examples/json_dynamic.rs
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
//! This example illustrates the way to send and receive arbitrary JSON.
|
||||
//!
|
||||
//! This is useful for some ad-hoc experiments and situations when you don't
|
||||
//! really care about the structure of the JSON and just need to display it or
|
||||
//! process it at runtime.
|
||||
|
||||
// This is using the `tokio` runtime. You'll need the following dependency:
|
||||
//
|
||||
// `tokio = { version = "1", features = ["full"] }`
|
||||
#[tokio::main]
|
||||
async fn main() -> Result<(), reqwest::Error> {
|
||||
let echo_json: serde_json::Value = reqwest::Client::new()
|
||||
.post("https://jsonplaceholder.typicode.com/posts")
|
||||
.json(&serde_json::json!({
|
||||
"title": "Reqwest.rs",
|
||||
"body": "https://docs.rs/reqwest",
|
||||
"userId": 1
|
||||
}))
|
||||
.send()
|
||||
.await?
|
||||
.json()
|
||||
.await?;
|
||||
|
||||
println!("{:#?}", echo_json);
|
||||
// Object(
|
||||
// {
|
||||
// "body": String(
|
||||
// "https://docs.rs/reqwest"
|
||||
// ),
|
||||
// "id": Number(
|
||||
// 101
|
||||
// ),
|
||||
// "title": String(
|
||||
// "Reqwest.rs"
|
||||
// ),
|
||||
// "userId": Number(
|
||||
// 1
|
||||
// )
|
||||
// }
|
||||
// )
|
||||
Ok(())
|
||||
}
|
||||
Reference in New Issue
Block a user