Skip to content

Commit

Permalink
automatically enable some features
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed May 22, 2024
1 parent 049cd3e commit e28a5b6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ triomphe = { version = "0.1.11", default-features = false, features = [
"unsize",
] }

# Local workspace dependencies (so we don't have to specify the path in every crate)
# Local workspace dependencies (crate directory)
kitsune-activitypub = { path = "crates/kitsune-activitypub" }
kitsune-cache = { path = "crates/kitsune-cache" }
kitsune-captcha = { path = "crates/kitsune-captcha" }
Expand Down Expand Up @@ -143,7 +143,9 @@ kitsune-wasm-mrf = { path = "crates/kitsune-wasm-mrf" }
kitsune-webfinger = { path = "crates/kitsune-webfinger" }
kitsune = { path = "kitsune" }
kitsune-job-runner = { path = "kitsune-job-runner" }
athena = { path = "lib/athena" }

# Local workspace dependences (lib directory)
athena = { path = "lib/athena", features = ["redis"] }
blowocking = { path = "lib/blowocking" }
cursiv = { path = "lib/cursiv" }
geomjeungja = { path = "lib/geomjeungja" }
Expand All @@ -152,7 +154,7 @@ just-retry = { path = "lib/just-retry" }
masto-id-convert = { path = "lib/masto-id-convert" }
mrf-manifest = { path = "lib/mrf-manifest" }
post-process = { path = "lib/post-process" }
speedy-uuid = { path = "lib/speedy-uuid" }
speedy-uuid = { path = "lib/speedy-uuid", features = ["serde"] }
tick-tock-mock = { path = "lib/tick-tock-mock" }
tower-http-digest = { path = "lib/tower-http-digest" }
tower-stop-using-brave = { path = "lib/tower-stop-using-brave" }
Expand Down
2 changes: 1 addition & 1 deletion crates/kitsune-mastodon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ mime = "0.3.17"
serde = "1.0.202"
simd-json = { workspace = true }
smol_str = "0.2.2"
speedy-uuid = { workspace = true, features = ["serde"] }
speedy-uuid = { workspace = true }
tracing = "0.1.40"
typed-builder = "0.18.2"

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 @@ -24,7 +24,7 @@ openidconnect = { version = "4.0.0-alpha.1", default-features = false, features
] }
serde = { version = "1.0.202", features = ["derive"] }
simd-json = { workspace = true }
speedy-uuid = { workspace = true, features = ["serde"] }
speedy-uuid = { workspace = true }
url = "2.5.0"

[lints]
Expand Down
2 changes: 1 addition & 1 deletion kitsune-job-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = false
eula = false

[dependencies]
athena = { workspace = true, features = ["redis"] }
athena = { workspace = true }
clap = { workspace = true }
color-eyre = "0.6.3"
fred = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion kitsune/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ license = false
eula = false

[dependencies]
athena = { workspace = true, features = ["redis"] }
athena = { workspace = true }
argon2 = { version = "0.5.3", features = ["std"] }
askama = { workspace = true }
askama_axum = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/athena/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ rand = { version = "0.8.5", optional = true }
serde = { version = "1.0.202", features = ["derive"] }
simd-json = { workspace = true, optional = true }
smol_str = "0.2.2"
speedy-uuid = { workspace = true, features = ["redis", "serde"] }
speedy-uuid = { workspace = true, features = ["redis"] }
thiserror = "1.0.61"
tokio = { version = "1.37.0", features = ["macros", "rt", "sync"] }
tokio-util = { version = "0.7.11", features = ["rt"] }
Expand Down

0 comments on commit e28a5b6

Please sign in to comment.