Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 27 additions & 27 deletions Cargo.lock

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

16 changes: 9 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ default-members = [
resolver = "3"

[workspace.package]
version = "0.0.19"
version = "0.0.20"
edition = "2024"
authors = ["Yann Prono <yann.prono@maif.fr>"]
readme = "README.md"
Expand All @@ -33,16 +33,18 @@ license = "Apache-2.0"
rust-version = "1.85.0"

[workspace.dependencies]
lib = { package = "yozefu-lib", path = "crates/lib", version = "0.0.19" }
app = { package = "yozefu-app", path = "crates/app", version = "0.0.19" }
command = { package = "yozefu-command", path = "crates/command", version = "0.0.19" }
yozefu = { package = "yozefu", path = "crates/bin", version = "0.0.19" }
tui = { package = "yozefu-tui", path = "crates/tui", version = "0.0.19" }
wasm-types = { package = "wasm-types", path = "crates/wasm-types", version = "0.0.19" }
lib = { package = "yozefu-lib", path = "crates/lib", version = "0.0.20" }
app = { package = "yozefu-app", path = "crates/app", version = "0.0.20" }
command = { package = "yozefu-command", path = "crates/command", version = "0.0.20" }
yozefu = { package = "yozefu", path = "crates/bin", version = "0.0.20" }
tui = { package = "yozefu-tui", path = "crates/tui", version = "0.0.20" }
wasm-types = { package = "wasm-types", path = "crates/wasm-types", version = "0.0.20" }
serde_json = { version = "1.0.145", features = ["preserve_order"] }
serde = { version = "1.0.228", features = ["derive"] }
strum = {version = "0.27.2" }
tracing = "0.1.41"
schemars = { version = "1.1.0" }


[profile.release]
opt-level = 3
Expand Down
4 changes: 2 additions & 2 deletions crates/app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ serde_json = { workspace = true }
lib = { workspace = true, features = ["native"] }
itertools = "0.14.0"
thousands = "0.2.0"
indexmap = "2.12.0"
indexmap = "2.12.1"
rdkafka = { version = "0.38.0", features = ["cmake-build"] }
extism = { version = "1.12.0", features = [] }
url = { version = "2.5.7", features = ["serde"] }
Expand All @@ -31,7 +31,7 @@ tracing = { workspace = true }
[dev-dependencies]
tempfile = "3.23.0"
testing_logger = "0.1.1"
schemars = { version = "1.1.0", features = ["indexmap2", "url2"] }
schemars = { workspace = true }



Expand Down
4 changes: 2 additions & 2 deletions crates/command/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rust-version.workspace = true


[dependencies]
clap = { version = "4.5.52", features = [
clap = { version = "4.5.53", features = [
"derive",
"env",
"color",
Expand All @@ -41,7 +41,7 @@ rdkafka = { version = "0.38.0", features = [
"external-lz4",
] }
extism = { version = "1.12.0" }
indexmap = "2.12.0"
indexmap = "2.12.1"
tui = { workspace = true }
app = { workspace = true }
lib = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ reqwest = { version = "0.12.24", features = ["json"] }
byteorder = "1.5.0"

[dev-dependencies]
insta = { version = "1.43.2", features = ["filters", "glob"] }
insta = { version = "1.44.1", features = ["filters", "glob"] }
protobuf = "3.7.2"
tokio = { version = "1.48.0", features = ["rt", "macros"] }
schemars = { version = "1.1.0", features = ["indexmap2", "url2", "chrono04"]}
schemars = { workspace = true, features = ["indexmap2", "url2", "chrono04"]}

[features]
native = [
Expand Down
6 changes: 3 additions & 3 deletions crates/tui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ratatui = { version = "0.29.0", features = [
] }
crossterm = { version = "0.29.0", features = ["event-stream"] }
itertools = "0.14.0"
bytesize = { version = "2.2.0" }
bytesize = { version = "2.3.0" }
nom = "8.0.0"
throbber-widgets-tui = { version = "0.9.0" }
futures = "0.3.31"
Expand All @@ -52,8 +52,8 @@ gssapi-vendored = ["rdkafka/gssapi-vendored"]


[dev-dependencies]
indexmap = "2.12.0"
insta = { version = "1.43.2", features = ["filters"] }
indexmap = "2.12.1"
insta = { version = "1.44.1", features = ["filters"] }
tempfile = "3.23.0"
quickcheck = "1"
quickcheck_macros = "1"
4 changes: 2 additions & 2 deletions crates/tui/src/component/help_component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ impl Component for HelpComponent {
fn handle_key_events(&mut self, key: KeyEvent) -> Result<Option<Action>, TuiError> {
self.rendered = 0;
match key.code {
KeyCode::Char('k') | KeyCode::Down => {
KeyCode::Char('j') | KeyCode::Down => {
self.scroll.scroll_to_next_line();
}
KeyCode::Char('j') | KeyCode::Up => {
KeyCode::Char('k') | KeyCode::Up => {
self.scroll.scroll_to_previous_line();
}
KeyCode::Char('[') => {
Expand Down
4 changes: 2 additions & 2 deletions crates/tui/src/component/record_details_component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,10 @@ impl Component for RecordDetailsComponent<'_> {

fn handle_key_events(&mut self, key: KeyEvent) -> Result<Option<Action>, TuiError> {
match key.code {
KeyCode::Char('k') => {
KeyCode::Char('j') => {
self.scroll.scroll_to_next_line();
}
KeyCode::Char('j') => {
KeyCode::Char('k') => {
self.scroll.scroll_to_previous_line();
}
KeyCode::Char('[') => {
Expand Down
4 changes: 2 additions & 2 deletions crates/tui/src/component/schemas_component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ impl Component for SchemasComponent<'_> {

fn handle_key_events(&mut self, key: KeyEvent) -> Result<Option<Action>, TuiError> {
match key.code {
KeyCode::Char('k') | KeyCode::Down => {
KeyCode::Char('j') | KeyCode::Down => {
self.scroll.scroll_to_next_line();
}
KeyCode::Char('j') | KeyCode::Up => {
KeyCode::Char('k') | KeyCode::Up => {
self.scroll.scroll_to_previous_line();
}
KeyCode::Char('[') => {
Expand Down
4 changes: 2 additions & 2 deletions crates/tui/src/component/topic_details_component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ impl Component for TopicDetailsComponent {

fn handle_key_events(&mut self, key: KeyEvent) -> Result<Option<Action>, TuiError> {
match key.code {
KeyCode::Char('k') | KeyCode::Down => {
KeyCode::Char('j') | KeyCode::Down => {
self.next();
//self.scroll.scroll_to_next_line();
}
KeyCode::Char('j') | KeyCode::Up => {
KeyCode::Char('k') | KeyCode::Up => {
self.previous();
//self.scroll.scroll_to_previous_line();
}
Expand Down
4 changes: 2 additions & 2 deletions crates/tui/src/component/vertical_scrollable_block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ where

fn handle_key_events(&mut self, key: KeyEvent) -> Result<Option<Action>, TuiError> {
match key.code {
KeyCode::Char('k') | KeyCode::Down => {
KeyCode::Char('j') | KeyCode::Down => {
self.scroll = (self.scroll + 1).min(self.scroll_length);
}
KeyCode::Char('j') | KeyCode::Up => {
KeyCode::Char('k') | KeyCode::Up => {
self.scroll = self.scroll.saturating_sub(1);
}
KeyCode::Char('[') => {
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-blueprints/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"author": "",
"license": "BSD-3-Clause",
"devDependencies": {
"esbuild": "^0.25.12"
"esbuild": "^0.27.0"
}
}
4 changes: 2 additions & 2 deletions docs/keybindings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ The choices I made are completely personal. I use a qwerty Apple keyboard for yo
| <kbd>Ctrl</kbd> + <kbd>O</kbd> | Show/Hide topics |
| <kbd>[</kbd> | Scroll to top |
| <kbd>]</kbd> | Scroll to bottom |
| <kbd>J</kbd> | Move to upward direction by one line |
| <kbd>K</kbd> | Move to downward direction by one line |
| <kbd>K</kbd> | Move to upward direction by one line |
| <kbd>J</kbd> | Move to downward direction by one line |


<br />
Expand Down
Loading