Skip to content

Commit d5e3e79

Browse files
committed
fix: feature
1 parent f550edf commit d5e3e79

File tree

4 files changed

+1
-7
lines changed

4 files changed

+1
-7
lines changed

crates/pg_base_db/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! I am not yet 100% happy with this, because when we create a `StatementRef`, the text is cloned from `Document` and included in the Hash. This must be improved by leaving the text in the `Document`, and making the `StatementRef` and actual reference to the text in the `Document`. This will make the `StatementRef` smaller and faster to compare.
1212
//! Additionally, the errors returned by the `pg_statement_splitter::split` are not exposed yet. This must be done to show syntax errors to the user.
1313
14-
#![feature(extract_if, lazy_cell, test)]
14+
#![feature(extract_if, test)]
1515

1616
mod change;
1717
mod document;

crates/pg_lexer/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,3 @@ insta = "1.31.0"
1818
[lib]
1919
doctest = false
2020

21-
[features]
22-
lazy_cell = []

crates/pg_lexer/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(lazy_cell)]
2-
31
mod codegen;
42

53
use pg_query::protobuf::{KeywordKind, ScanToken};

crates/pg_statement_splitter/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(lazy_cell)]
2-
31
///! Postgres Statement Splitter
42
///!
53
///! This crate provides a function to split a SQL source string into individual statements.

0 commit comments

Comments
 (0)