Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
trevyn committed May 11, 2024
1 parent ca1cfb5 commit fc8c0f6
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 27 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:

- run: rustup default ${{ matrix.rust }} && rustup update ${{ matrix.rust }}

- run: sudo apt-get update
if: ${{ matrix.os == 'ubuntu-latest' }}

- run: sudo apt-get install libgtk-3-dev libasound2-dev
if: ${{ matrix.os == 'ubuntu-latest' }}

Expand Down
46 changes: 23 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
[package]
edition = "2021"
license = "MIT OR Apache-2.0 OR CC0-1.0"
name = "grace"
name = "brace"
publish = false
rust-version = "1.72"
version = "0.1.0"

[dependencies]
async-openai = "0.19"
async-openai = "0.21"
byteorder = "1"
bytes = "1"
cpal = "0.15"
crossbeam = "0.8"
deepgram = {path = "deepgram-rust-sdk"}
eframe = {version = "0.25", default-features = false, features = ["default_fonts", "glow", "persistence"]}
egui = "0.25" # egui_node_graph uses 0.25
egui_extras = {version = "0.25", features = ["image"]}
egui_node_graph = {git = "https://github.com/trevyn/egui_node_graph", branch = "node-zoom-trevyn"}
ehttp = "0.5"
env_logger = "0.11"
futures = "0.3"
hound = "3"
image = {version = "0.24", default-features = false, features = ["jpeg", "png"]}
log = "0.4"
once_cell = "1"
poll-promise = {version = "0.3", default-features = false}
regex = "1"
reqwest = "0.11"
rfd = "0.14"
serde = {version = "1.0.196", features = ["derive"]}
serde_json = "1"
stream-cancel = "0.8"
tokio = {version = "1", features = ["full"]}
tracked = "0.5"
turbosql = "0.10.0"
eframe = {version = "0.27", default-features = false, features = ["default_fonts", "glow", "persistence"]}
egui = "0.27" # egui_node_graph uses 0.25
egui_extras = {version = "0.27", features = ["image"]}
# egui_node_graph = {git = "https://github.com/trevyn/egui_node_graph", branch = "node-zoom-trevyn"}
ehttp = "0.5"
env_logger = "0.11"
futures = "0.3"
hound = "3"
image = {version = "0.25", default-features = false, features = ["jpeg", "png"]}
log = "0.4"
once_cell = "1"
poll-promise = {version = "0.3", default-features = false}
regex = "1"
reqwest = "0.12"
rfd = "0.14"
serde = {version = "1.0.196", features = ["derive"]}
serde_json = "1"
stream-cancel = "0.8"
tokio = {version = "1", features = ["full"]}
tracked = "0.5"
turbosql = "0.10.0"

# this can be removed when updating to egui 0.26
[target.'cfg(any(target_os = "windows"))'.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# brace

grace for the brain
orthodontics for the mind
grace for the brain
orthodontics for the mind
scaffolding for your garden
2 changes: 1 addition & 1 deletion deepgram-rust-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bytes = "1"
futures = "0.3"
http = "1"
pin-project = "1"
reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls-tls", "stream"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ impl eframe::App for App {
COMPLETION.lock().unwrap().clear();
if let Some(mut state) = egui::TextEdit::load_state(ctx, id) {
let ccursor = egui::text::CCursor::new(entry.content.chars().count());
state.set_ccursor_range(Some(egui::text::CCursorRange::one(ccursor)));
state.cursor.set_char_range(Some(egui::text::CCursorRange::one(ccursor)));
state.store(ctx, id);
// ui.ctx().memory().request_focus(text_edit_id); // give focus back to the `TextEdit`.
}
Expand Down

0 comments on commit fc8c0f6

Please sign in to comment.