mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-04 01:52:16 +00:00
Most of the CLI crates were already in the 2018 edition, and it turns out that one of the macro crates was already in the 2018 edition so we may as well move everything to the 2018 edition! Always nice to remove those `extern crate` statements nowadays! This commit also does a `cargo fmt --all` to make sure we're conforming with style again.
16 lines
339 B
Rust
Executable File
16 lines
339 B
Rust
Executable File
#![recursion_limit = "256"]
|
|
#![cfg_attr(feature = "extra-traits", deny(missing_debug_implementations))]
|
|
#![doc(html_root_url = "https://docs.rs/wasm-bindgen-backend/0.2")]
|
|
|
|
pub use crate::codegen::TryToTokens;
|
|
pub use crate::error::Diagnostic;
|
|
|
|
#[macro_use]
|
|
mod error;
|
|
|
|
pub mod ast;
|
|
mod codegen;
|
|
pub mod defined;
|
|
mod encode;
|
|
pub mod util;
|