mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-26 11:31:37 +08:00
Merge pull request #147 from jgallagher/update-to-latest-bitflags
Update to latest bitflags crate.
This commit is contained in:
commit
ba7b1ea45e
@ -21,7 +21,7 @@ trace = []
|
||||
|
||||
[dependencies]
|
||||
time = "~0.1.0"
|
||||
bitflags = "~0.1"
|
||||
bitflags = "0.7"
|
||||
libc = "~0.2"
|
||||
clippy = {version = "~0.0.58", optional = true}
|
||||
chrono = { version = "~0.2", optional = true }
|
||||
|
@ -1,5 +1,5 @@
|
||||
environment:
|
||||
TARGET: 1.6.0-x86_64-pc-windows-gnu
|
||||
TARGET: 1.8.0-x86_64-pc-windows-gnu
|
||||
MSYS2_BITS: 64
|
||||
install:
|
||||
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:TARGET}.exe"
|
||||
|
@ -537,7 +537,7 @@ bitflags! {
|
||||
#[doc = "Flags for opening SQLite database connections."]
|
||||
#[doc = "See [sqlite3_open_v2](http://www.sqlite.org/c3ref/open.html) for details."]
|
||||
#[repr(C)]
|
||||
flags OpenFlags: c_int {
|
||||
pub flags OpenFlags: ::libc::c_int {
|
||||
const SQLITE_OPEN_READ_ONLY = 0x00000001,
|
||||
const SQLITE_OPEN_READ_WRITE = 0x00000002,
|
||||
const SQLITE_OPEN_CREATE = 0x00000004,
|
||||
|
Loading…
Reference in New Issue
Block a user