Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion javascript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

[package]
edition = "2021"
edition = "2024"
name = "adbc_driver_manager_node"
version = "0.24.0"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions javascript/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@

use std::collections::{HashMap, HashSet};
use std::path::PathBuf;
use std::sync::mpsc;
use std::sync::Mutex;
use std::sync::mpsc;

use adbc_core::{
Connection, Database, Driver, LOAD_FLAG_DEFAULT, Optionable, Statement,
options::{
AdbcVersion, InfoCode, ObjectDepth, OptionConnection, OptionDatabase, OptionStatement,
OptionValue,
},
Connection, Database, Driver, Optionable, Statement, LOAD_FLAG_DEFAULT,
};
use adbc_driver_manager::{ManagedConnection, ManagedDatabase, ManagedDriver, ManagedStatement};
use arrow_array::RecordBatchReader;
Expand Down
Loading