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