From d9fffaf7972af1796a6ea54608e65bfb28bad0fd Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Sat, 13 Feb 2016 10:51:24 +0800 Subject: [PATCH] Remove load_extension feature from the binding --- Cargo.toml | 2 +- libsqlite3-sys/Cargo.toml | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3555180..45c954d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT" name = "rusqlite" [features] -load_extension = ["libsqlite3-sys/load_extension"] +load_extension = [] backup = [] blob = [] functions = [] diff --git a/libsqlite3-sys/Cargo.toml b/libsqlite3-sys/Cargo.toml index b199cfc..b93650b 100644 --- a/libsqlite3-sys/Cargo.toml +++ b/libsqlite3-sys/Cargo.toml @@ -8,9 +8,6 @@ license = "MIT" links = "sqlite3" build = "build.rs" -[features] -load_extension = [] - [build-dependencies] pkg-config = "~0.3"