Skip to content

Commit

Permalink
config: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
KKould committed Apr 28, 2024
1 parent 74a7d3e commit 1b20a11
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ csv = { version = "1.3.0" }
dirs = { version = "5.0.1" }
env_logger = { version = "0.11.3", optional = true }
futures = { version = "0.3.30" }
futures-async-stream = { version = "0.2.10" }
futures-async-stream = { version = "0.2.11" }
integer-encoding = { version = "3.0.4" }
itertools = { version = "0.12.1" }
kip_db = { version = "0.1.2-alpha.26" }
kip_db = { version = "0.1.2-alpha.26.fix1" }
lazy_static = { version = "1.4.0" }
log = { version = "0.4.21", optional = true }
ordered-float = { version = "4.2.0" }
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2024-01-18
nightly-2024-04-27
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#![feature(iterator_try_collect)]
#![feature(slice_pattern)]
#![feature(is_sorted)]
#![feature(stmt_expr_attributes)]
extern crate core;
pub mod binder;
pub mod catalog;
Expand Down
1 change: 1 addition & 0 deletions src/optimizer/heuristic/batch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ use crate::optimizer::rule::normalization::NormalizationRuleImpl;
/// A batch of rules.
#[derive(Clone)]
pub struct HepBatch {
#[allow(dead_code)]
pub name: String,
pub strategy: HepBatchStrategy,
pub rules: Vec<NormalizationRuleImpl>,
Expand Down

0 comments on commit 1b20a11

Please sign in to comment.