Skip to content

Commit

Permalink
Restyling (#602)
Browse files Browse the repository at this point in the history
* install tailwind (forgive me for what im about to do)

* some style crimes

* new frontend style, whodis?

* some responsiveness

* fix mobile

* fix tablet footer

* fix dialog styling

* remove playwright

* up

* doc pnpm

* up

* use valkey in ci

* restore some scss files for now

* begin button port

* up cargo

* move to lexical

* port button styles, add danger variant

* fix style

* port pretty much everything

* convert stuff to use tailwind classes

* cargo fmt

* Exclude houdini dir

* up
  • Loading branch information
aumetra authored Nov 14, 2024
1 parent fe44a5d commit 9e141e0
Show file tree
Hide file tree
Showing 31 changed files with 1,046 additions and 499 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
--health-timeout 5s
--health-retries 5
redis:
image: redis
image: valkey/valkey:alpine
ports:
- 6379:6379
options: >-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
--health-timeout 5s
--health-retries 5
redis:
image: redis
image: valkey/valkey:alpine
ports:
- 6379:6379
options: >-
Expand Down
131 changes: 61 additions & 70 deletions Cargo.lock

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

5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ askama = { version = "0.12.1", default-features = false, features = [
"with-axum",
] }
asynk-strim = "0.1.2"
clap = { version = "4.5.20", features = ["derive", "wrap_help"] }
clap = { version = "4.5.21", features = ["derive", "wrap_help"] }
diesel = { version = "2.2.4", default-features = false, features = [
"32-column-tables",
"with-deprecated",
Expand Down Expand Up @@ -204,6 +204,3 @@ license = "AGPL-3.0-or-later"
[patch.crates-io]
# SIMD runtime detection and generic I/O wrapper
sonic-rs = { git = "https://github.com/aumetra/sonic-rs.git", rev = "12df930a57ff9f07eb16111a3da1feff3dc8e5ad" }

# Compatibility with latest opentelemetry crates
tracing-opentelemetry = { git = "https://github.com/tokio-rs/tracing-opentelemetry.git", rev = "d18214596c97b1243ee955a63bed3875a4f8f5f9" }
2 changes: 1 addition & 1 deletion crates/kitsune-observability/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ opentelemetry_sdk = { version = "0.27.0", default-features = false, features = [
] }
tracing = "0.1.40"
tracing-error = "0.2.0"
tracing-opentelemetry = { version = "0.27.0", default-features = false }
tracing-opentelemetry = { version = "0.28.0", default-features = false }
tracing-subscriber = "0.3.18"

[lints]
Expand Down
2 changes: 1 addition & 1 deletion crates/kitsune-wasm-mrf/example-mrf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crate-type = ["cdylib"]

[dependencies]
rand = "0.8.5"
wit-bindgen = "0.34.0"
wit-bindgen = "0.35.0"

[lints]
workspace = true
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,10 @@
enable = true;
listen_addresses = "127.0.0.1";
};
redis.enable = true;
redis = {
package = pkgs.valkey;
enable = true;
};
};
}
)
Expand Down
Loading

0 comments on commit 9e141e0

Please sign in to comment.