Bug 1608150 [wpt PR 21112] - Add missing space in `./wpt lint` command line docs...
[gecko.git] / third_party / rust / cubeb-pulse / src / lib.rs
blob434e357e960300288bc5665998b6492b158980b7
1 //! Cubeb backend interface to Pulse Audio
3 // Copyright © 2017-2018 Mozilla Foundation
4 //
5 // This program is made available under an ISC-style license.  See the
6 // accompanying file LICENSE for details.
8 #[macro_use]
9 extern crate cubeb_backend;
10 extern crate pulse;
11 extern crate pulse_ffi;
12 extern crate semver;
13 extern crate ringbuf;
15 mod capi;
16 mod backend;
18 pub use capi::pulse_rust_init;