Skip to content

Commit cd34376

Browse files
committed
up
1 parent 1e58c71 commit cd34376

File tree

17 files changed

+213
-255
lines changed

17 files changed

+213
-255
lines changed

Cargo.lock

+189-222
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ fred = { version = "9.0.3", features = [
9696
"i-scripts",
9797
"sha-1",
9898
] }
99-
garde = { version = "0.19.1", features = [
99+
garde = { version = "0.19.2", features = [
100100
"derive",
101101
"email",
102102
"email-idna",
@@ -107,7 +107,7 @@ itertools = { version = "0.13.0", default-features = false }
107107
moka = { version = "0.12.7", features = ["sync"] }
108108
simdutf8 = { version = "0.1.4", features = ["aarch64_neon"] }
109109
sonic-rs = "0.3.7"
110-
triomphe = { version = "0.1.12", default-features = false, features = [
110+
triomphe = { version = "0.1.13", default-features = false, features = [
111111
"unsize",
112112
] }
113113

@@ -212,7 +212,7 @@ diesel-async = { git = "https://github.com/weiznich/diesel_async.git", rev = "3b
212212
scraper = { git = "https://github.com/causal-agent/scraper.git", rev = "d67111f5cc0b7da6e6ff10e4549d87cf09ba3e5b" }
213213
tokio-postgres-rustls = { git = "https://github.com/jbg/tokio-postgres-rustls.git", rev = "b16c1bc0f5d4f91324174fd1bd839d743a70f86a" }
214214

215-
# SIMD runtime detection
215+
# SIMD runtime detection and generic I/O wrapper
216216
sonic-rs = { git = "https://github.com/aumetra/sonic-rs.git", rev = "317ff37a8ab88e653ee01bbc00a974d41f3b151a" }
217217

218218
# TCP nodelay for `axum::serve`

crates/kitsune-activitypub/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ speedy-uuid = { workspace = true }
3838
tracing = "0.1.40"
3939
triomphe = { workspace = true }
4040
typed-builder = "0.18.2"
41-
url = "2.5.1"
41+
url = "2.5.2"
4242

4343
[target.'cfg(not(target_env = "msvc"))'.dependencies]
4444
sha2 = { version = "0.10.8", features = ["asm"] }

crates/kitsune-db/src/schema.rs

-9
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,11 @@ pub mod sql_types {
1010
#[derive(diesel::sql_types::SqlType)]
1111
#[diesel(postgres_type(name = "language_iso_code", schema = "kitsune"))]
1212
pub struct LanguageIsoCode;
13-
14-
/// The `pg_catalog.tsvector` SQL type
15-
///
16-
/// (Automatically generated by Diesel.)
17-
#[derive(diesel::sql_types::SqlType)]
18-
#[diesel(postgres_type(name = "tsvector", schema = "pg_catalog"))]
19-
pub struct Tsvector;
2013
}
2114

2215
diesel::table! {
2316
use diesel::sql_types::*;
2417
use diesel_full_text_search::Tsvector;
25-
use super::sql_types::Tsvector;
2618

2719
/// Representation of the `accounts` table.
2820
///
@@ -830,7 +822,6 @@ diesel::table! {
830822
use diesel::sql_types::*;
831823
use diesel_full_text_search::Tsvector;
832824
use super::sql_types::LanguageIsoCode;
833-
use super::sql_types::Tsvector;
834825

835826
/// Representation of the `posts` table.
836827
///

crates/kitsune-derive/impl/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ license.workspace = true
99
proc-macro = true
1010

1111
[dependencies]
12-
proc-macro2 = "1.0.85"
12+
proc-macro2 = "1.0.86"
1313
quote = "1.0.36"
14-
syn = { version = "2.0.66", features = ["full"] }
14+
syn = { version = "2.0.67", features = ["full"] }
1515

1616
[lints]
1717
workspace = true

crates/kitsune-federation-filter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ kitsune-config = { workspace = true }
1111
kitsune-derive = { workspace = true }
1212
kitsune-error = { workspace = true }
1313
kitsune-type = { workspace = true }
14-
url = "2.5.1"
14+
url = "2.5.2"
1515

1616
[lints]
1717
workspace = true

crates/kitsune-language/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ isolang = { version = "2.4.0", features = [
1414
"list_languages",
1515
"serde",
1616
] }
17-
rustc-hash = "1.1.0"
17+
rustc-hash = "2.0.0"
1818
whatlang = "0.16.4"
1919
whichlang = "0.1.0"
2020

crates/kitsune-oidc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ openidconnect = { version = "4.0.0-alpha.2", default-features = false, features
2525
serde = { version = "1.0.203", features = ["derive"] }
2626
sonic-rs = { workspace = true }
2727
speedy-uuid = { workspace = true }
28-
url = "2.5.1"
28+
url = "2.5.2"
2929

3030
[lints]
3131
workspace = true

crates/kitsune-s3/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ futures-util = { version = "0.3.30", default-features = false }
1111
http = "1.1.0"
1212
kitsune-error = { workspace = true }
1313
kitsune-http-client = { workspace = true }
14-
quick-xml = { version = "0.32.0", features = ["serialize"] }
14+
quick-xml = { version = "0.33.0", features = ["serialize"] }
1515
rusty-s3 = "0.5.0"
1616
serde = { version = "1.0.203", features = ["derive"] }
1717
typed-builder = "0.18.2"

crates/kitsune-service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ tokio = { version = "1.38.0", features = ["macros", "sync"] }
5252
tracing = "0.1.40"
5353
triomphe = { workspace = true }
5454
typed-builder = "0.18.2"
55-
url = "2.5.1"
55+
url = "2.5.2"
5656
zxcvbn = { version = "3.0.1", default-features = false }
5757

5858
[dev-dependencies]

crates/kitsune-test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ rand = "0.8.5"
2121
rusty-s3 = { version = "0.5.0", default-features = false }
2222
tokio = { version = "1.38.0", features = ["time"] }
2323
triomphe = { workspace = true }
24-
url = "2.5.1"
24+
url = "2.5.2"
2525
uuid = { version = "1.8.0", features = ["fast-rng", "v4"] }
2626

2727
[lints]

crates/kitsune-wasm-mrf/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ tokio = { version = "1.38.0", features = ["fs"] }
2929
tracing = "0.1.40"
3030
triomphe = { workspace = true }
3131
walkdir = "2.5.0"
32-
wasmtime = { version = "21.0.1", default-features = false, features = [
32+
wasmtime = { version = "22.0.0", default-features = false, features = [
3333
"addr2line",
3434
"async",
3535
"component-model",
@@ -38,13 +38,13 @@ wasmtime = { version = "21.0.1", default-features = false, features = [
3838
"pooling-allocator",
3939
"runtime",
4040
] }
41-
wasmtime-wasi = { version = "21.0.1", default-features = false }
41+
wasmtime-wasi = { version = "22.0.0", default-features = false }
4242

4343
[dev-dependencies]
4444
tempfile = "3.10.1"
4545
tokio = { version = "1.38.0", features = ["macros", "rt"] }
4646
tracing-subscriber = "0.3.18"
47-
wat = "1.210.0"
47+
wat = "1.211.1"
4848

4949
[lints]
5050
workspace = true

kitsune/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ tracing = "0.1.40"
101101
trials = { workspace = true }
102102
triomphe = { workspace = true }
103103
typed-builder = "0.18.2"
104-
url = "2.5.1"
104+
url = "2.5.2"
105105

106106
# --- Optional dependencies ---
107107

lib/mrf-manifest/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ semver = { version = "1.0.23", features = ["serde"] }
1313
serde = { version = "1.0.203", features = ["derive"] }
1414
serde_json = { version = "1.0.117", optional = true }
1515
thiserror = { version = "1.0.61", optional = true }
16-
wasm-encoder = { version = "0.210.0", optional = true }
17-
wasmparser = { version = "0.210.0", optional = true }
16+
wasm-encoder = { version = "0.211.1", optional = true }
17+
wasmparser = { version = "0.211.1", optional = true }
1818

1919
[dev-dependencies]
2020
serde_json = "1.0.117"
2121
insta = { version = "1.39.0", default-features = false, features = ["json"] }
22-
wat = "1.210.0"
22+
wat = "1.211.1"
2323

2424
[features]
2525
decode = ["dep:leb128", "dep:serde_json", "dep:thiserror", "dep:wasmparser"]

lib/mrf-tool/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ mrf-manifest = { workspace = true, features = [
1515
"serialise",
1616
] }
1717
serde_json = "1.0.117"
18-
wasmparser = "0.210.0"
18+
wasmparser = "0.211.1"
1919

2020
[lints]
2121
workspace = true
2222

2323
[dev-dependencies]
2424
serde_json = "1.0.117"
25-
wat = "1.210.0"
25+
wat = "1.211.1"

lib/tower-http-digest/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ http-body = "1.0.0"
1414
memchr = "2.7.4"
1515
pin-project-lite = "0.2.14"
1616
sha2 = "0.10.8"
17-
subtle = "2.5.0"
17+
subtle = "2.6.0"
1818
tower-layer = "0.3.2"
1919
tower-service = "0.3.2"
2020
tracing = { version = "0.1.40", default-features = false }

lib/trials/macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ license = "MIT OR Apache-2.0"
99
proc-macro = true
1010

1111
[dependencies]
12-
proc-macro2 = "1.0.85"
12+
proc-macro2 = "1.0.86"
1313
quote = "1.0.36"
14-
syn = { version = "2.0.66", features = ["full", "visit-mut"] }
14+
syn = { version = "2.0.67", features = ["full", "visit-mut"] }
1515

1616
[lints]
1717
workspace = true

0 commit comments

Comments
 (0)