Skip to content

Commit f743ed1

Browse files
committed
Fix build
1 parent ccf0e94 commit f743ed1

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/ast/helpers/key_value_options.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
//! See [this page](https://docs.snowflake.com/en/sql-reference/commands-data-loading) for more details.
2020
2121
#[cfg(not(feature = "std"))]
22-
use alloc::string::String;
23-
#[cfg(not(feature = "std"))]
24-
use alloc::vec::Vec;
22+
use alloc::{boxed::Box, string::String, vec::Vec};
2523
use core::fmt;
2624
use core::fmt::Formatter;
2725

src/parser/alter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#[cfg(not(feature = "std"))]
1616
use alloc::vec;
1717
#[cfg(not(feature = "std"))]
18-
use alloc::{boxed::Box, string::ToString};
18+
use alloc::{string::ToString};
1919

2020
use super::{Parser, ParserError};
2121
use crate::{

0 commit comments

Comments
 (0)