Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Jun 23, 2024
1 parent 1e58c71 commit aeb1028
Show file tree
Hide file tree
Showing 17 changed files with 218 additions and 266 deletions.
427 changes: 194 additions & 233 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ fred = { version = "9.0.3", features = [
"i-scripts",
"sha-1",
] }
garde = { version = "0.19.1", features = [
garde = { version = "0.19.2", features = [
"derive",
"email",
"email-idna",
Expand All @@ -107,7 +107,7 @@ itertools = { version = "0.13.0", default-features = false }
moka = { version = "0.12.7", features = ["sync"] }
simdutf8 = { version = "0.1.4", features = ["aarch64_neon"] }
sonic-rs = "0.3.7"
triomphe = { version = "0.1.12", default-features = false, features = [
triomphe = { version = "0.1.13", default-features = false, features = [
"unsize",
] }

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

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

# TCP nodelay for `axum::serve`
Expand Down
2 changes: 1 addition & 1 deletion crates/kitsune-activitypub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ speedy-uuid = { workspace = true }
tracing = "0.1.40"
triomphe = { workspace = true }
typed-builder = "0.18.2"
url = "2.5.1"
url = "2.5.2"

[target.'cfg(not(target_env = "msvc"))'.dependencies]
sha2 = { version = "0.10.8", features = ["asm"] }
Expand Down
9 changes: 0 additions & 9 deletions crates/kitsune-db/src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,11 @@ pub mod sql_types {
#[derive(diesel::sql_types::SqlType)]
#[diesel(postgres_type(name = "language_iso_code", schema = "kitsune"))]
pub struct LanguageIsoCode;

/// The `pg_catalog.tsvector` SQL type
///
/// (Automatically generated by Diesel.)
#[derive(diesel::sql_types::SqlType)]
#[diesel(postgres_type(name = "tsvector", schema = "pg_catalog"))]
pub struct Tsvector;
}

diesel::table! {
use diesel::sql_types::*;
use diesel_full_text_search::Tsvector;
use super::sql_types::Tsvector;

/// Representation of the `accounts` table.
///
Expand Down Expand Up @@ -830,7 +822,6 @@ diesel::table! {
use diesel::sql_types::*;
use diesel_full_text_search::Tsvector;
use super::sql_types::LanguageIsoCode;
use super::sql_types::Tsvector;

/// Representation of the `posts` table.
///
Expand Down
4 changes: 2 additions & 2 deletions crates/kitsune-derive/impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ license.workspace = true
proc-macro = true

[dependencies]
proc-macro2 = "1.0.85"
proc-macro2 = "1.0.86"
quote = "1.0.36"
syn = { version = "2.0.66", features = ["full"] }
syn = { version = "2.0.67", features = ["full"] }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/kitsune-federation-filter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ kitsune-config = { workspace = true }
kitsune-derive = { workspace = true }
kitsune-error = { workspace = true }
kitsune-type = { workspace = true }
url = "2.5.1"
url = "2.5.2"

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/kitsune-language/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ isolang = { version = "2.4.0", features = [
"list_languages",
"serde",
] }
rustc-hash = "1.1.0"
rustc-hash = "2.0.0"
whatlang = "0.16.4"
whichlang = "0.1.0"

Expand Down
2 changes: 1 addition & 1 deletion crates/kitsune-oidc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ openidconnect = { version = "4.0.0-alpha.2", default-features = false, features
serde = { version = "1.0.203", features = ["derive"] }
sonic-rs = { workspace = true }
speedy-uuid = { workspace = true }
url = "2.5.1"
url = "2.5.2"

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/kitsune-s3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ futures-util = { version = "0.3.30", default-features = false }
http = "1.1.0"
kitsune-error = { workspace = true }
kitsune-http-client = { workspace = true }
quick-xml = { version = "0.32.0", features = ["serialize"] }
quick-xml = { version = "0.33.0", features = ["serialize"] }
rusty-s3 = "0.5.0"
serde = { version = "1.0.203", features = ["derive"] }
typed-builder = "0.18.2"
Expand Down
2 changes: 1 addition & 1 deletion crates/kitsune-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ tokio = { version = "1.38.0", features = ["macros", "sync"] }
tracing = "0.1.40"
triomphe = { workspace = true }
typed-builder = "0.18.2"
url = "2.5.1"
url = "2.5.2"
zxcvbn = { version = "3.0.1", default-features = false }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/kitsune-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ rand = "0.8.5"
rusty-s3 = { version = "0.5.0", default-features = false }
tokio = { version = "1.38.0", features = ["time"] }
triomphe = { workspace = true }
url = "2.5.1"
url = "2.5.2"
uuid = { version = "1.8.0", features = ["fast-rng", "v4"] }

[lints]
Expand Down
6 changes: 3 additions & 3 deletions crates/kitsune-wasm-mrf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ tokio = { version = "1.38.0", features = ["fs"] }
tracing = "0.1.40"
triomphe = { workspace = true }
walkdir = "2.5.0"
wasmtime = { version = "21.0.1", default-features = false, features = [
wasmtime = { version = "22.0.0", default-features = false, features = [
"addr2line",
"async",
"component-model",
Expand All @@ -38,13 +38,13 @@ wasmtime = { version = "21.0.1", default-features = false, features = [
"pooling-allocator",
"runtime",
] }
wasmtime-wasi = { version = "21.0.1", default-features = false }
wasmtime-wasi = { version = "22.0.0", default-features = false }

[dev-dependencies]
tempfile = "3.10.1"
tokio = { version = "1.38.0", features = ["macros", "rt"] }
tracing-subscriber = "0.3.18"
wat = "1.210.0"
wat = "1.211.1"

[lints]
workspace = true
2 changes: 1 addition & 1 deletion kitsune/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ tracing = "0.1.40"
trials = { workspace = true }
triomphe = { workspace = true }
typed-builder = "0.18.2"
url = "2.5.1"
url = "2.5.2"

# --- Optional dependencies ---

Expand Down
6 changes: 3 additions & 3 deletions lib/mrf-manifest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ semver = { version = "1.0.23", features = ["serde"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = { version = "1.0.117", optional = true }
thiserror = { version = "1.0.61", optional = true }
wasm-encoder = { version = "0.210.0", optional = true }
wasmparser = { version = "0.210.0", optional = true }
wasm-encoder = { version = "0.211.1", optional = true }
wasmparser = { version = "0.211.1", optional = true }

[dev-dependencies]
serde_json = "1.0.117"
insta = { version = "1.39.0", default-features = false, features = ["json"] }
wat = "1.210.0"
wat = "1.211.1"

[features]
decode = ["dep:leb128", "dep:serde_json", "dep:thiserror", "dep:wasmparser"]
Expand Down
4 changes: 2 additions & 2 deletions lib/mrf-tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ mrf-manifest = { workspace = true, features = [
"serialise",
] }
serde_json = "1.0.117"
wasmparser = "0.210.0"
wasmparser = "0.211.1"

[lints]
workspace = true

[dev-dependencies]
serde_json = "1.0.117"
wat = "1.210.0"
wat = "1.211.1"
2 changes: 1 addition & 1 deletion lib/tower-http-digest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ http-body = "1.0.0"
memchr = "2.7.4"
pin-project-lite = "0.2.14"
sha2 = "0.10.8"
subtle = "2.5.0"
subtle = "2.6.0"
tower-layer = "0.3.2"
tower-service = "0.3.2"
tracing = { version = "0.1.40", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions lib/trials/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ license = "MIT OR Apache-2.0"
proc-macro = true

[dependencies]
proc-macro2 = "1.0.85"
proc-macro2 = "1.0.86"
quote = "1.0.36"
syn = { version = "2.0.66", features = ["full", "visit-mut"] }
syn = { version = "2.0.67", features = ["full", "visit-mut"] }

[lints]
workspace = true

0 comments on commit aeb1028

Please sign in to comment.