commit
55a0add371
@ -1,4 +1,4 @@
|
|||||||
target
|
target
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
mongo_c_driver_wrapper/mongo-c-driver*
|
mongoc-sys/mongo-c-driver*
|
||||||
mongo_c_driver_wrapper/src/bindings.rs
|
mongoc-sys/src/bindings.rs
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "mongo_c_driver_wrapper"
|
name = "mongoc-sys"
|
||||||
version = "1.1.10"
|
version = "1.1.10"
|
||||||
build = "build.rs"
|
|
||||||
authors = ["Thijs Cadier <thijs@appsignal.com>"]
|
authors = ["Thijs Cadier <thijs@appsignal.com>"]
|
||||||
|
build = "build.rs"
|
||||||
|
links = "mongoc"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "*"
|
libc = "*"
|
||||||
|
openssl-sys = "*"
|
||||||
|
|
||||||
[build-dependencies.bindgen]
|
[build-dependencies.bindgen]
|
||||||
git = "https://github.com/crabtw/rust-bindgen.git"
|
git = "https://github.com/crabtw/rust-bindgen.git"
|
@ -1,4 +1,5 @@
|
|||||||
extern crate libc;
|
extern crate libc;
|
||||||
|
extern crate openssl_sys;
|
||||||
|
|
||||||
#[allow(non_camel_case_types,non_snake_case)]
|
#[allow(non_camel_case_types,non_snake_case)]
|
||||||
pub mod bindings;
|
pub mod bindings;
|
Loading…
Reference in New Issue