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

Commit 05edfd8

Browse filesBrowse files
committed
fix: correct deny.toml
1 parent fb5a26c commit 05edfd8
Copy full SHA for 05edfd8

File tree

Expand file treeCollapse file tree

9 files changed

+232
-300
lines changed
Filter options
Expand file treeCollapse file tree

9 files changed

+232
-300
lines changed

‎Cargo.lock

Copy file name to clipboardExpand all lines: Cargo.lock
+208-276Lines changed: 208 additions & 276 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

Copy file name to clipboardExpand all lines: Cargo.toml
+17-17Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ edition = "2021"
2121
keywords = ["postgresql", "postgres", "embedded", "database", "server"]
2222
license = "(Apache-2.0 OR MIT) AND PostgreSQL"
2323
repository = "https://github.com/theseus-rs/postgresql-embedded"
24-
rust-version = "1.83.0"
24+
rust-version = "1.84.0"
2525
version = "0.17.3"
2626

2727
[workspace.dependencies]
28-
anyhow = "1.0.93"
29-
async-trait = "0.1.83"
30-
axum = "0.7.9"
28+
anyhow = "1.0.95"
29+
async-trait = "0.1.85"
30+
axum = "0.8.1"
3131
criterion = "0.5.1"
32-
diesel = "2.2.5"
32+
diesel = "2.2.6"
3333
diesel_migrations = "2.2.0"
3434
flate2 = "1.0.35"
3535
futures-util = "0.3.30"
3636
hex = "0.4.3"
37-
home = "0.5.9"
37+
home = "0.5.11"
3838
http = "1.1.0"
3939
human_bytes = { version = "0.4.3", default-features = false }
4040
indicatif = "0.17.8"
@@ -48,27 +48,27 @@ quick-xml = "0.37.1"
4848
r2d2_postgres = "0.18.1"
4949
rand = "0.8.5"
5050
regex = "1.11.1"
51-
reqwest = { version = "0.12.9", default-features = false }
51+
reqwest = { version = "0.12.12", default-features = false }
5252
reqwest-middleware = "0.4.0"
5353
reqwest-retry = "0.7.0"
54-
reqwest-tracing = "0.5.4"
55-
semver = "1.0.23"
56-
serde = "1.0.215"
57-
serde_json = "1.0.128"
54+
reqwest-tracing = "0.5.5"
55+
semver = "1.0.24"
56+
serde = "1.0.217"
57+
serde_json = "1.0.135"
5858
sha1 = "0.10.6"
5959
sha2 = "0.10.8"
60-
sqlx = { version = "0.8.2", default-features = false, features = ["postgres"] }
60+
sqlx = { version = "0.8.3", default-features = false, features = ["postgres"] }
6161
tar = "0.4.43"
6262
target-triple = "0.1.3"
6363
test-log = "0.2.16"
64-
tempfile = "3.14.0"
65-
thiserror = "2.0.3"
66-
tokio = "1.41.1"
64+
tempfile = "3.15.0"
65+
thiserror = "2.0.10"
66+
tokio = "1.43.0"
6767
tracing = "0.1.41"
68-
tracing-indicatif = "0.3.6"
68+
tracing-indicatif = "0.3.8"
6969
tracing-subscriber = "0.3.19"
7070
url = "2.5.4"
71-
zip = "2.2.1"
71+
zip = "2.2.2"
7272

7373
[workspace.metadata.release]
7474
shared-version = true

‎deny.toml

Copy file name to clipboardExpand all lines: deny.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ allow = [
2323
"MIT",
2424
"PostgreSQL",
2525
"Unicode-3.0",
26-
"Unicode-DFS-2016",
26+
"Zlib",
2727
]
2828

2929
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html

‎postgresql_archive/src/repository/registry.rs

Copy file name to clipboardExpand all lines: postgresql_archive/src/repository/registry.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ mod tests {
123123

124124
#[async_trait]
125125
impl Repository for TestRepository {
126-
fn name(&self) -> &str {
126+
fn name(&self) -> &'static str {
127127
"test"
128128
}
129129

‎postgresql_extensions/src/repository/portal_corp/repository.rs

Copy file name to clipboardExpand all lines: postgresql_extensions/src/repository/portal_corp/repository.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ impl PortalCorp {
4545

4646
#[async_trait]
4747
impl Repository for PortalCorp {
48-
fn name(&self) -> &str {
48+
fn name(&self) -> &'static str {
4949
"portal-corp"
5050
}
5151

‎postgresql_extensions/src/repository/registry.rs

Copy file name to clipboardExpand all lines: postgresql_extensions/src/repository/registry.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ mod tests {
142142

143143
#[async_trait]
144144
impl Repository for TestRepository {
145-
fn name(&self) -> &str {
145+
fn name(&self) -> &'static str {
146146
"test"
147147
}
148148

‎postgresql_extensions/src/repository/steampipe/repository.rs

Copy file name to clipboardExpand all lines: postgresql_extensions/src/repository/steampipe/repository.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl Steampipe {
4646

4747
#[async_trait]
4848
impl Repository for Steampipe {
49-
fn name(&self) -> &str {
49+
fn name(&self) -> &'static str {
5050
"steampipe"
5151
}
5252

‎postgresql_extensions/src/repository/tensor_chord/repository.rs

Copy file name to clipboardExpand all lines: postgresql_extensions/src/repository/tensor_chord/repository.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ impl TensorChord {
4545

4646
#[async_trait]
4747
impl Repository for TensorChord {
48-
fn name(&self) -> &str {
48+
fn name(&self) -> &'static str {
4949
"tensor-chord"
5050
}
5151

‎rust-toolchain.toml

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.83.0"
2+
channel = "1.84.0"
33
profile = "default"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.