Re-export object from cranelift-object (#1599)

* Re-export object from cranelift-object

Closes https://github.com/bytecodealliance/wasmtime/issues/1597

* Fix formatting

Co-Authored-By: bjorn3 <bjorn3@users.noreply.github.com>

Co-authored-by: bjorn3 <bjorn3@users.noreply.github.com>
This commit is contained in:
Joshua Nelson
2020-04-29 20:06:00 -04:00
committed by GitHub
parent 957677c6f5
commit bc4b4707e3

View File

@@ -1,6 +1,6 @@
//! Top-level lib.rs for `cranelift_object`. //! Top-level lib.rs for `cranelift_object`.
//! //!
//! Users of this module should not have to depend on `object` directly. //! This re-exports `object` so you don't have to explicitly keep the versions in sync.
#![deny( #![deny(
missing_docs, missing_docs,
@@ -31,3 +31,5 @@ pub use crate::backend::{ObjectBackend, ObjectBuilder, ObjectProduct};
/// Version number of this crate. /// Version number of this crate.
pub const VERSION: &str = env!("CARGO_PKG_VERSION"); pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub use object;