Skip to content

Commit

Permalink
Fixed reference to interner in benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Jan 1, 2022
1 parent c6939d7 commit 60034b8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion boa/benches/full.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//! Benchmarks of the whole execution engine in Boa.

use boa::{interner::Interner, realm::Realm, syntax::Parser, Context};
use boa::{realm::Realm, syntax::Parser, Context};
use boa_interner::Interner;
use criterion::{black_box, criterion_group, criterion_main, Criterion};

#[cfg(all(target_arch = "x86_64", target_os = "linux", target_env = "gnu"))]
Expand Down
2 changes: 1 addition & 1 deletion boa_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ default-run = "boa"

[dependencies]
Boa = { path = "../boa", features = ["deser", "console"] }
rustyline = "9.1.1"
rustyline = "9.1.2"
rustyline-derive = "0.6.0"
structopt = "0.3.25"
serde_json = "1.0.73"
Expand Down
2 changes: 1 addition & 1 deletion boa_interner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ rust-version = "1.56"

[dependencies]
string-interner = "0.14.0"
serde = { version = "1.0.132", features = ["derive"], optional = true }
serde = { version = "1.0.132", features = ["derive"], optional = true }

0 comments on commit 60034b8

Please sign in to comment.