mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 16:29:20 +08:00
Bump version and use libc
from crates.io
This commit is contained in:
parent
c8fbe48f15
commit
4b085b9103
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "rusqlite"
|
||||
version = "0.0.13"
|
||||
version = "0.0.14"
|
||||
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
||||
description = "Ergonomic wrapper for SQLite"
|
||||
repository = "https://github.com/jgallagher/rusqlite"
|
||||
@ -18,7 +18,8 @@ load_extension = ["libsqlite3-sys/load_extension"]
|
||||
[dependencies]
|
||||
time = "~0.1.0"
|
||||
bitflags = "~0.1"
|
||||
libc = "~0.1"
|
||||
|
||||
[dependencies.libsqlite3-sys]
|
||||
path = "libsqlite3-sys"
|
||||
version = "0.0.11"
|
||||
version = "0.0.12"
|
||||
|
@ -1,3 +1,7 @@
|
||||
# Version 0.0.14
|
||||
|
||||
* Remove unneeded features (also involves switching to `libc` crate).
|
||||
|
||||
# Version 0.0.13 (2015-03-26)
|
||||
|
||||
* Updates to track rustc nightly.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "libsqlite3-sys"
|
||||
version = "0.0.11"
|
||||
version = "0.0.12"
|
||||
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
||||
repository = "https://github.com/jgallagher/rusqlite"
|
||||
description = "Native bindings to the libsqlite3 library"
|
||||
@ -13,3 +13,6 @@ load_extension = []
|
||||
|
||||
[build-dependencies]
|
||||
pkg-config = "~0.3"
|
||||
|
||||
[dependencies]
|
||||
libc = "~0.1"
|
||||
|
@ -1,4 +1,3 @@
|
||||
#![feature(libc)]
|
||||
#![allow(non_snake_case)]
|
||||
|
||||
extern crate libc;
|
||||
|
@ -48,7 +48,7 @@
|
||||
//! }
|
||||
//! }
|
||||
//! ```
|
||||
#![feature(unsafe_destructor, libc)]
|
||||
#![feature(unsafe_destructor)]
|
||||
#![cfg_attr(test, feature(test))]
|
||||
|
||||
extern crate libc;
|
||||
|
Loading…
Reference in New Issue
Block a user