Skip to content

Commit

Permalink
shuffling files
Browse files Browse the repository at this point in the history
  • Loading branch information
imalsogreg committed Jan 13, 2025
1 parent 0409fbc commit 9f3d137
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 39 deletions.
11 changes: 1 addition & 10 deletions engine/Cargo.lock

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

9 changes: 2 additions & 7 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = [
"baml-lib/*",
"baml-runtime",
"baml-schema-wasm", "benches",
"baml-schema-wasm",
"bstd",
"cli",
"language_client_codegen",
Expand Down Expand Up @@ -111,9 +111,4 @@ lto = false
inherits = "dev"

[profile.release]
lto = true

[[ bench ]]
name = "bench"
path = "benches/bench.rs"
harness = false
lto = true
7 changes: 7 additions & 0 deletions engine/baml-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ tracing = { version = "0.1.40", features = ["valuable"] }
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter","valuable"] }
thiserror = "2.0.1"
log-once = "0.4.1"
criterion = "0.5.1"


[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down Expand Up @@ -150,6 +151,7 @@ skip-integ-tests = []
[dev-dependencies]
assert_cmd = "2"
console_log = "1"
criterion = "0.5.1"
dissimilar = "1.0.4"
expect-test = "1.1.0"
indoc.workspace = true
Expand All @@ -158,3 +160,8 @@ rstest = "0.22.0"
wasm-bindgen-test = "0.3.42"
walkdir = "2.5.0"
wasm-logger = "0.2.0"

[[ bench ]]
name = "bench"
path = "benches/bench.rs"
harness = false
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::hint::black_box;
use criterion::{criterion_group, criterion_main, Criterion };
use crate::sap_parser_benchmark::parse_benchmarks;
use sap_parser_benchmark::parse_benchmarks;

fn fib(n: u64) -> u64 {
if n < 2 {
Expand Down
File renamed without changes.
21 changes: 0 additions & 21 deletions engine/benches/Cargo.toml

This file was deleted.

0 comments on commit 9f3d137

Please sign in to comment.