nss_sys/lib.rs
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5#![allow(unknown_lints)]
6#![warn(rust_2018_idioms)]
7#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
8
9mod bindings;
10pub use bindings::*;
11
12// So we link against the SQLite lib imported by parent crates
13// such as places and logins.
14#[allow(unused_extern_crates)]
15#[cfg(any(not(feature = "gecko"), __appsvc_ci_hack))]
16extern crate libsqlite3_sys;