Giter Club home page Giter Club logo

Comments (6)

lawliet89 avatar lawliet89 commented on August 19, 2024

I just merged a PR yesterday for some rocket 0.4 changes. I'll see later if it works with rc1

from rocket_cors.

jordanmack avatar jordanmack commented on August 19, 2024

I actually just saw that I was using 0.3.0 in Cargo.toml. I switched to master now. Still having a problem, but it is probably my side.

from rocket_cors.

lawliet89 avatar lawliet89 commented on August 19, 2024

I'll look into this later.

from rocket_cors.

jordanmack avatar jordanmack commented on August 19, 2024

I put together a minimal program using the fairings example, but still no luck. Here is the error:

error[E0277]: the trait bound `rocket_cors::Method: std::convert::From<rocket::http::Method>` is not satisfied
  --> src/main.rs:21:60
   |
21 |         allowed_methods: vec![Method::Get].into_iter().map(From::from).collect(),
   |                                                            ^^^^^^^^^^ the trait `std::convert::From<rocket::http::Method>` is not implemented for `rocket_cors::Method`
   |
   = help: the following implementations were found:
             <rocket_cors::Method as std::convert::From<rocket_http::method::Method>>
   = note: required by `std::convert::From::from`

error[E0277]: the trait bound `rocket_cors::Cors: rocket::fairing::Fairing` is not satisfied
  --> src/main.rs:29:10
   |
29 |         .attach(options)
   |          ^^^^^^ the trait `rocket::fairing::Fairing` is not implemented for `rocket_cors::Cors`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0277`.
error: Could not compile `rocket_cors_test`.

rocket_cors_test.zip

from rocket_cors.

lawliet89 avatar lawliet89 commented on August 19, 2024

What is happening is this:

  • rocket_cors is depending on the master branch of Rocket
  • Your example is depending on the 0.4.0-rc.1 version of Rocket
  • rocket_cors is seeing the master branch version of rocket::http::Method
  • Your example requires the 0.4.0-rc.1 version of rocket::http::Method.

They are not the same. And the code refuses to compile.

You should remove rocket_codegen from your Cargo.toml. It is no longer needed.

I will release a version of the crate that uses 0.4.0-rc.1 soon. See #49.

from rocket_cors.

lawliet89 avatar lawliet89 commented on August 19, 2024

See https://crates.io/crates/rocket_cors/0.4.0-rc.1

from rocket_cors.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.