summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 9003b08..ad626e1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -45,7 +45,8 @@ pub mod metadata;
pub use ffi::*;
pub use ffi_converter_traits::{
- ConvertError, FfiConverter, FfiConverterArc, Lift, LiftRef, LiftReturn, Lower, LowerReturn,
+ ConvertError, FfiConverter, FfiConverterArc, HandleAlloc, Lift, LiftRef, LiftReturn, Lower,
+ LowerReturn,
};
pub use metadata::*;
@@ -57,12 +58,13 @@ pub mod deps {
pub use async_compat;
pub use bytes;
pub use log;
+ pub use oneshot;
pub use static_assertions;
}
mod panichook;
-const PACKAGE_VERSION: &str = env!("CARGO_PKG_VERSION");
+const PACKAGE_VERSION: &str = "0.27.1";
// For the significance of this magic number 10 here, and the reason that
// it can't be a named constant, see the `check_compatible_version` function.