Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

build: update to Rust 1.84.0 #152

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

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
484 changes: 208 additions & 276 deletions 484 Cargo.lock

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions 34 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ edition = "2021"
keywords = ["postgresql", "postgres", "embedded", "database", "server"]
license = "(Apache-2.0 OR MIT) AND PostgreSQL"
repository = "https://github.com/theseus-rs/postgresql-embedded"
rust-version = "1.83.0"
rust-version = "1.84.0"
version = "0.17.3"

[workspace.dependencies]
anyhow = "1.0.93"
async-trait = "0.1.83"
axum = "0.7.9"
anyhow = "1.0.95"
async-trait = "0.1.85"
axum = "0.8.1"
criterion = "0.5.1"
diesel = "2.2.5"
diesel = "2.2.6"
diesel_migrations = "2.2.0"
flate2 = "1.0.35"
futures-util = "0.3.30"
hex = "0.4.3"
home = "0.5.9"
home = "0.5.11"
http = "1.1.0"
human_bytes = { version = "0.4.3", default-features = false }
indicatif = "0.17.8"
Expand All @@ -48,27 +48,27 @@ quick-xml = "0.37.1"
r2d2_postgres = "0.18.1"
rand = "0.8.5"
regex = "1.11.1"
reqwest = { version = "0.12.9", default-features = false }
reqwest = { version = "0.12.12", default-features = false }
reqwest-middleware = "0.4.0"
reqwest-retry = "0.7.0"
reqwest-tracing = "0.5.4"
semver = "1.0.23"
serde = "1.0.215"
serde_json = "1.0.128"
reqwest-tracing = "0.5.5"
semver = "1.0.24"
serde = "1.0.217"
serde_json = "1.0.135"
sha1 = "0.10.6"
sha2 = "0.10.8"
sqlx = { version = "0.8.2", default-features = false, features = ["postgres"] }
sqlx = { version = "0.8.3", default-features = false, features = ["postgres"] }
tar = "0.4.43"
target-triple = "0.1.3"
test-log = "0.2.16"
tempfile = "3.14.0"
thiserror = "2.0.3"
tokio = "1.41.1"
tempfile = "3.15.0"
thiserror = "2.0.10"
tokio = "1.43.0"
tracing = "0.1.41"
tracing-indicatif = "0.3.6"
tracing-indicatif = "0.3.8"
tracing-subscriber = "0.3.19"
url = "2.5.4"
zip = "2.2.1"
zip = "2.2.2"

[workspace.metadata.release]
shared-version = true
Expand Down
2 changes: 1 addition & 1 deletion 2 deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ allow = [
"MIT",
"PostgreSQL",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
]

# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
Expand Down
2 changes: 1 addition & 1 deletion 2 postgresql_archive/src/repository/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ mod tests {

#[async_trait]
impl Repository for TestRepository {
fn name(&self) -> &str {
fn name(&self) -> &'static str {
"test"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl PortalCorp {

#[async_trait]
impl Repository for PortalCorp {
fn name(&self) -> &str {
fn name(&self) -> &'static str {
"portal-corp"
}

Expand Down
2 changes: 1 addition & 1 deletion 2 postgresql_extensions/src/repository/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ mod tests {

#[async_trait]
impl Repository for TestRepository {
fn name(&self) -> &str {
fn name(&self) -> &'static str {
"test"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ impl Steampipe {

#[async_trait]
impl Repository for Steampipe {
fn name(&self) -> &str {
fn name(&self) -> &'static str {
"steampipe"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl TensorChord {

#[async_trait]
impl Repository for TensorChord {
fn name(&self) -> &str {
fn name(&self) -> &'static str {
"tensor-chord"
}

Expand Down
2 changes: 1 addition & 1 deletion 2 rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.83.0"
channel = "1.84.0"
profile = "default"
Morty Proxy This is a proxified and sanitized view of the page, visit original site.