Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Dec 1, 2024
1 parent 8e9da0b commit bca56d1
Show file tree
Hide file tree
Showing 25 changed files with 124 additions and 151 deletions.
83 changes: 25 additions & 58 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 41 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ resolver = "2"

[workspace.dependencies]
ahash = "0.8.11"
aliri_braid = "0.4.0"
argon2 = { version = "0.5.3", features = ["std"] }
async-graphql = { version = "7.0.11", default-features = false, features = [
"graphiql",
Expand All @@ -92,10 +93,15 @@ asynk-strim = "0.1.2"
async-trait = "0.1.83"
axum-core = "0.4.5"
base64-simd = "0.8.0"
blake3 = "1.5.5"
bytes = "1.9.0"
chrono = { version = "0.4.38", default-features = false }
clap = { version = "4.5.21", features = ["derive", "wrap_help"] }
color-eyre = "0.6.3"
colored_json = "5.0.0"
const-oid = { version = "0.9.6", features = ["db"] }
cookie = { version = "0.18.1", features = ["percent-encode"] }
derive_builder = "0.20.2"
diesel = { version = "2.2.5", default-features = false, features = [
"32-column-tables",
"postgres_backend",
Expand All @@ -120,6 +126,7 @@ fred = { version = "10.0.0", features = [
"sha-1",
"unix-sockets",
] }
futures-executor = "0.3.31"
futures-test = "0.3.31"
futures-util = { version = "0.3.31", default-features = false, features = [
"alloc",
Expand All @@ -141,23 +148,51 @@ hickory-resolver = { version = "0.25.0-alpha.4", default-features = false, featu
http = "1.1.0"
http-body = "1.0.1"
http-body-util = "0.1.2"
httpdate = "1.0.3"
hyper = "1.5.1"
icu_normalizer = "1.5.0"
insta = { version = "1.41.1", default-features = false, features = [
"glob",
"json",
] }
iso8601-timestamp = { version = "0.3.1", features = ["diesel-pg"] }
itertools = { version = "0.13.0", default-features = false }
leb128 = "0.2.5"
lexical-parse-integer = { version = "1.0.2", default-features = false }
logos = "0.14.2"
lol_html = "2.0.0"
memchr = "2.7.4"
miette = { version = "7.4.0", features = ["fancy"] }
mimalloc = "0.1.43"
mime = "0.3.17"
mime_guess = { version = "2.0.5", default-features = false }
minijinja = { version = "2.5.0", features = ["loader"] }
moka = { version = "=0.12.7", features = ["sync"] }
nanorand = { version = "0.7.0", default-features = false, features = [
"wyrand",
] }
olpc-cjson = "0.1.4"
owo-colors = { version = "4.1.0", features = ["supports-colors"] }
pin-project-lite = "0.2.15"
pkcs8 = { version = "0.10.2", features = ["pem", "std"] }
postcard = { version = "1.1.1", default-features = false, features = ["alloc"] }
pretty_assertions = "1.4.1"
rand = "0.8.5"
rand_xorshift = "0.3.0"
rayon = "1.10.0"
regex = "1.11.1"
retry-policies = "0.4.0"
ring = { version = "0.17.8", features = ["std"] }
sailfish = { version = "0.9.0", default-features = false, features = [
"derive",
"perf-inline",
] }
schemars = { version = "1.0.0-alpha.16", features = ["semver1"] }
scoped-futures = { version = "0.1.4", default-features = false }
semver = { version = "1.0.23", features = ["serde"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_test = "1.0.177"
serde_json = "1.0.133"
sha2 = "0.10.8"
simdutf8 = { version = "0.1.5", features = ["aarch64_neon"] }
smol_str = { version = "0.3.2", features = ["serde"] }
Expand Down Expand Up @@ -194,9 +229,15 @@ triomphe = { version = "0.1.14", default-features = false, features = [
"unsize",
] }
typed-builder = "0.20.0"
typetag = "0.2.18"
unsize = "1.1.0"
url = "2.5.4"
uuid = { version = "1.11.0", features = ["fast-rng", "v7"] }
uuid-simd = { version = "0.8.0", features = ["uuid"] }
wasm-encoder = "0.221.0"
wasmparser = "0.221.0"
wat = "1.221.0"
zeroize = { version = "1.8.1", features = ["derive"] }

# Local workspace dependencies (crate directory)
kitsune-activitypub = { path = "crates/kitsune-activitypub" }
Expand Down
4 changes: 2 additions & 2 deletions crates/kitsune-activitypub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ url.workspace = true

[dev-dependencies]
http-body-util.workspace = true
hyper = "1.5.1"
hyper.workspace = true
kitsune-config.workspace = true
kitsune-test.workspace = true
kitsune-webfinger.workspace = true
pretty_assertions = "1.4.1"
pretty_assertions.workspace = true
tokio.workspace = true
tower.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/kitsune-http-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ http.workspace = true
http-body.workspace = true
http-body-util.workspace = true
http-signatures.workspace = true
hyper = "1.5.1"
hyper.workspace = true
hyper-util = { version = "0.1.10", features = [
"client-legacy",
"http1",
Expand Down
2 changes: 1 addition & 1 deletion crates/kitsune-observability/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license.workspace = true
async-trait.workspace = true
eyre.workspace = true
http-body-util.workspace = true
hyper = { version = "1.5.1", default-features = false }
hyper.workspace = true
kitsune-config.workspace = true
kitsune-core.workspace = true
kitsune-http-client.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions crates/kitsune-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ asynk-strim.workspace = true
athena.workspace = true
blowocking.workspace = true
bytes.workspace = true
derive_builder = "0.20.2"
derive_builder.workspace = true
diesel.workspace = true
diesel-async.workspace = true
eyre.workspace = true
Expand Down Expand Up @@ -40,7 +40,7 @@ kitsune-url.workspace = true
kitsune-util.workspace = true
mime.workspace = true
password-hash = { version = "0.5.0", features = ["std"] }
pkcs8 = "0.10.2"
pkcs8.workspace = true
post-process.workspace = true
rand.workspace = true
rsa = "0.9.7"
Expand All @@ -58,14 +58,14 @@ zxcvbn = { version = "3.1.0", default-features = false }
[dev-dependencies]
hex-simd.workspace = true
http-body-util.workspace = true
hyper = "1.5.1"
hyper.workspace = true
kitsune-activitypub.workspace = true
kitsune-config.workspace = true
kitsune-federation-filter.workspace = true
kitsune-jobs.workspace = true
kitsune-test.workspace = true
kitsune-webfinger.workspace = true
pretty_assertions = "1.4.1"
pretty_assertions.workspace = true
tempfile.workspace = true
tower.workspace = true

Expand Down
4 changes: 2 additions & 2 deletions crates/kitsune-type/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ speedy-uuid.workspace = true
strum.workspace = true

[dev-dependencies]
pretty_assertions = "1.4.1"
pretty_assertions.workspace = true
rstest = { version = "0.23.0", default-features = false }
serde_test = "1"
serde_test.workspace = true

[lints]
workspace = true
4 changes: 2 additions & 2 deletions crates/kitsune-wasm-mrf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build = "build.rs"

[dependencies]
async-trait.workspace = true
blake3 = "1.5.5"
blake3.workspace = true
color-eyre.workspace = true
derive_more = { version = "1.0.0", features = ["from"] }
enum_dispatch.workspace = true
Expand Down Expand Up @@ -47,7 +47,7 @@ tempfile.workspace = true
tokio.workspace = true
tower.workspace = true
tracing-subscriber.workspace = true
wat = "1.221.0"
wat.workspace = true

[lints]
workspace = true
4 changes: 2 additions & 2 deletions crates/kitsune-webfinger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ urlencoding = "2.1.3"

[dev-dependencies]
http-body-util.workspace = true
hyper = "1.5.1"
pretty_assertions = "1.4.1"
hyper.workspace = true
pretty_assertions.workspace = true
sonic-rs.workspace = true
tokio.workspace = true
tower.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions lib/athena/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ tokio-util.workspace = true
tracing.workspace = true
triomphe.workspace = true
typed-builder.workspace = true
typetag = "0.2.18"
typetag.workspace = true
unsize.workspace = true

[features]
redis = ["dep:either", "dep:fred", "dep:rand", "dep:sonic-rs"]

[dev-dependencies]
kitsune-test.workspace = true
postcard = { version = "1.1.1", default-features = false, features = ["alloc"] }
postcard.workspace = true
tracing-subscriber.workspace = true

[lints]
Expand Down
2 changes: 1 addition & 1 deletion lib/blowocking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version.workspace = true
license = "MIT OR Apache-2.0"

[dependencies]
rayon = "1.10.0"
rayon.workspace = true
thiserror.workspace = true
tokio.workspace = true
tracing.workspace = true
Expand Down
Loading

0 comments on commit bca56d1

Please sign in to comment.