Skip to content

Commit

Permalink
updated lock
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-devv committed Mar 21, 2024
1 parent acc2370 commit 5e340bc
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 67 deletions.
130 changes: 65 additions & 65 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ members = [

[workspace.dependencies]
futures = "0.3.30"
tokio = "1.34.0"
tokio = "1.36.0"
2 changes: 1 addition & 1 deletion crates/llama_cpp_sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl ParseCallbacks for GGMLLinkRename {
/// Add platform appropriate flags and definitions present in all compilation configurations.
fn push_common_flags(cx: &mut Build, cxx: &mut Build) {
cx.static_flag(true).cpp(false).std("c11");
cxx.static_flag(true).cpp(true).std("c++14"); // MSVC does not support C++11
cxx.static_flag(true).cpp(true).std("c++11");

if !cfg!(debug_assertions) {
cx.define("NDEBUG", None);
Expand Down

0 comments on commit 5e340bc

Please sign in to comment.