diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-26 18:58:43 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-26 18:58:43 +1000 |
commit | f5e5a6fdf58f3135f3211135bfbcb6e70630309f (patch) | |
tree | 0d58ffe229df9ed907219537b78d2a88d10b331d /bindgen/rust/src/lib.rs | |
parent | aa1eeebb1c05edc22335cbb48af5d42be20750c0 (diff) |
fix glfw get key range so it doesnt panic on mac
Diffstat (limited to 'bindgen/rust/src/lib.rs')
-rw-r--r-- | bindgen/rust/src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bindgen/rust/src/lib.rs b/bindgen/rust/src/lib.rs new file mode 100644 index 0000000..f9e77b0 --- /dev/null +++ b/bindgen/rust/src/lib.rs @@ -0,0 +1,6 @@ +//! Celeritas bindings wrapper library + +#![warn(missing_docs)] +#![cfg_attr(docsrs, feature(doc_cfg))] + +pub use celeritas_sys as ffi; |