-
-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update to sqlx 8 (waiting for sqlx release) #159
base: master
Are you sure you want to change the base?
Conversation
We should wait to this PR to be approved |
We should wait for this changes to be released #3608 |
@pxp9 looking great. can you please fix clippy? |
# "sqlite", | ||
# "mysql", | ||
#] } | ||
sqlx = { git = "https://github.com/launchbadge/sqlx.git", branch = "main", features = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it won't be possible to release a new version if the crate will reference a github repo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know , I am officially waiting for the sqlx 8.3 release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 8.3 release is out!
# "sqlite", | ||
# "mysql", | ||
#] } | ||
sqlx = { git = "https://github.com/launchbadge/sqlx.git", branch = "main", features = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 8.3 release is out!
[toolchain] | ||
versioned = "1.83" | ||
channel = "stable-x86_64-unknown-linux-gnu" | ||
components = ["rustfmt", "rustc-dev", "clippy"] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
profile = "minimal" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You probably don't want to limit the toolchain to x86_64-unknown-linux-gnu
since it would prevent target triples like aarch64-apple-darwin
[toolchain] | |
versioned = "1.83" | |
channel = "stable-x86_64-unknown-linux-gnu" | |
components = ["rustfmt", "rustc-dev", "clippy"] | |
targets = ["x86_64-unknown-linux-gnu"] | |
profile = "minimal" | |
[toolchain] | |
versioned = "1.83" | |
channel = "stable" | |
components = ["rustfmt", "rustc-dev", "clippy"] | |
profile = "minimal" |
Update the crate sqlx.