You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0554]: `#![feature]` may not be used on the stable release channel
--> C:\Users\xxxx\.cargo\registry\src\github.com-1ecc6299db9ec823\thiserror-1.0.35\src\lib.rs:211:34
|
211 | #![cfg_attr(provide_any, feature(provide_any))]
| ^^^^^^^^^^^
For more information about this error, try `rustc --explain E0554`.
error: could not compile `thiserror` due to previous error
lib used by sqlx-core v0.6.2
Minimal Reproduction
[dependencies]
axum = "0.5.16"
tokio = { version = "1.0", features = ["full"] }
sqlx = { version = "0.6", features = ["runtime-actix-native-tls", "postgres" ] }
use sqlx::postgres::PgPoolOptions;
Info
SQLx version: 0.6
SQLx features enabled: "runtime-actix-native-tls", "postgres"
Database server and version: Postgres 14 (with docker-compose)
Bug Description
cargo doc
faillib used by
sqlx-core v0.6.2
Minimal Reproduction
use sqlx::postgres::PgPoolOptions;
Info
rustc --version
: rustc 1.63.0 (4b91a6ea7 2022-08-08)The text was updated successfully, but these errors were encountered: