简体   繁体   English

Rust reqwest 示例 json 代码无法编译

[英]Rust reqwest example json code does not compile

The example for dynamic json with reqwest 带有reqwest动态 json reqwest

extern crate reqwest;
extern crate tokio;
extern crate serde_json;  // added to after upgrade to 1.39.0

#[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(())
}

failed to compile for rustc 1.38.0 with reqwest = "0.9.22" and tokio = "0.2.2" :使用reqwest = "0.9.22"tokio = "0.2.2"编译 rustc 1.38.0失败:

 Compiling pin-project-lite v0.1.1 error: `core::slice::<impl [T]>::len` is not yet stable as a const fn --> /Users/mick/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.2/src/bytes.rs:121:18 | 121 | len: bytes.len(), | ^^^^^^^^^^^ error: aborting due to previous error error: Could not compile `bytes`.

This was fixed by upgrading as of the comment by Ömer below, but now the next problems are在下面 Ömer 的评论中,这是通过升级来解决的,但现在下一个问题是

error[E0433]: failed to resolve: could not find `main` in `tokio`
 --> main.rs:5:10
  |
5 | #[tokio::main]
  |          ^^^^ could not find `main` in `tokio`

error[E0277]: the trait bound `std::result::Result<reqwest::Response, reqwest::Error>: std::future::Future` is not satisfied
   --> main.rs:7:40
    |
7   |       let echo_json: serde_json::Value = reqwest::Client::new()
    |  ________________________________________^
8   | |         .post("https://jsonplaceholder.typicode.com/posts")
9   | |         .json(&serde_json::json!({
10  | |             "title": "Reqwest.rs",
...   |
14  | |         .send()
15  | |         .await?
    | |______________^ the trait `std::future::Future` is not implemented for `std::result::Result<reqwest::Response, reqwest::Error>`

error[E0277]: `main` has invalid return type `impl std::future::Future`
 --> main.rs:6:20
  |
6 | async fn main() -> Result<(), reqwest::Error> {
  |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^ `main` can only return types that implement `std::process::Termination`
  |
  = help: consider using `()`, or a `Result`

error: aborting due to 3 previous errors

Some errors have detailed explanations: E0277, E0433.
For more information about an error, try `rustc --explain E0277`.
error: could not compile `webtrekk`.

To learn more, run the command again with --verbose.

and the next reqwest = "0.10.0-alpha.2" tokio = { version = "0.2.2", features = ["macros"] } serde_json = "1.0.44"和下一个reqwest = "0.10.0-alpha.2" tokio = { version = "0.2.2", features = ["macros"] } serde_json = "1.0.44"

➜  rust git:(master) ✗ cargo run
    Updating crates.io index
error: failed to select a version for `tokio`.
    ... required by package `reqwest v0.10.0-alpha.2`
    ... which is depended on by `webtrekk v0.1.0 (/Users/mick/repo/webtrekk-client/rust)`
versions that meet the requirements `= 0.2.0-alpha.6` are: 0.2.0-alpha.6

all possible versions conflict with previously selected packages.

  previously selected package `tokio v0.2.2`
    ... which is depended on by `webtrekk v0.1.0 (/Users/mick/repo/webtrekk-client/rust)`

failed to select a version for `tokio` which could resolve this conflict

How can these be fixed?如何解决这些问题?

Your example comes from https://github.com/seanmonstar/reqwest/blob/master/examples/json_dynamic.rs and works with the following Cargo.toml , using Rust 1.39:您的示例来自https://github.com/seanmonstar/reqwest/blob/master/examples/json_dynamic.rs并与以下Cargo.toml使用,使用 Rust 1.39:

[package]
name = "reqwest-json_dynamic-example"
version = "0.1.0"
authors = ["fyaa"]
edition = "2018"

[dependencies]
tokio = { version = "=0.2.0-alpha.6", features = ["io", "tcp", "timer"] }
reqwest = { version = "0.10.0-alpha.2", features = ["json"] }
serde_json = "1.0.44"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM