mirror of
				https://github.com/isar/rusqlite.git
				synced 2025-11-04 08:08:55 +08:00 
			
		
		
		
	Use new hyphen-less extern crate name
This commit is contained in:
		@@ -1,6 +1,6 @@
 | 
				
			|||||||
[package]
 | 
					[package]
 | 
				
			||||||
name = "rusqlite"
 | 
					name = "rusqlite"
 | 
				
			||||||
version = "0.0.12"
 | 
					version = "0.0.13"
 | 
				
			||||||
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
 | 
					authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
 | 
				
			||||||
description = "Ergonomic wrapper for SQLite"
 | 
					description = "Ergonomic wrapper for SQLite"
 | 
				
			||||||
repository = "https://github.com/jgallagher/rusqlite"
 | 
					repository = "https://github.com/jgallagher/rusqlite"
 | 
				
			||||||
@@ -21,4 +21,4 @@ bitflags = "~0.1"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
[dependencies.libsqlite3-sys]
 | 
					[dependencies.libsqlite3-sys]
 | 
				
			||||||
path = "libsqlite3-sys"
 | 
					path = "libsqlite3-sys"
 | 
				
			||||||
version = "0.0.10"
 | 
					version = "0.0.11"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,3 +1,7 @@
 | 
				
			|||||||
 | 
					# Version 0.0.13 (2015-03-26)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					* Updates to track rustc nightly.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Version 0.0.12 (2015-03-24)
 | 
					# Version 0.0.12 (2015-03-24)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
* Updates to track rustc stabilization.
 | 
					* Updates to track rustc stabilization.
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								build.rs
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								build.rs
									
									
									
									
									
								
							@@ -1,4 +1,4 @@
 | 
				
			|||||||
extern crate "pkg-config" as pkg_config;
 | 
					extern crate pkg_config;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
fn main() {
 | 
					fn main() {
 | 
				
			||||||
    pkg_config::find_library("sqlite3").unwrap();
 | 
					    pkg_config::find_library("sqlite3").unwrap();
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -52,7 +52,7 @@
 | 
				
			|||||||
#![cfg_attr(test, feature(test))]
 | 
					#![cfg_attr(test, feature(test))]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern crate libc;
 | 
					extern crate libc;
 | 
				
			||||||
extern crate "libsqlite3-sys" as ffi;
 | 
					extern crate libsqlite3_sys as ffi;
 | 
				
			||||||
#[macro_use] extern crate bitflags;
 | 
					#[macro_use] extern crate bitflags;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
use std::mem;
 | 
					use std::mem;
 | 
				
			||||||
@@ -811,7 +811,7 @@ impl<'stmt> SqliteRow<'stmt> {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#[cfg(test)]
 | 
					#[cfg(test)]
 | 
				
			||||||
mod test {
 | 
					mod test {
 | 
				
			||||||
    extern crate "libsqlite3-sys" as ffi;
 | 
					    extern crate libsqlite3_sys as ffi;
 | 
				
			||||||
    use super::*;
 | 
					    use super::*;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    fn checked_memory_handle() -> SqliteConnection {
 | 
					    fn checked_memory_handle() -> SqliteConnection {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user