1[package]
2authors = ["The wasm-bindgen Developers"]
3description = """
4Backend code generation of the wasm-bindgen tool
5"""
6documentation = "https://docs.rs/wasm-bindgen-backend"
7edition = "2021"
8homepage = "https://rustwasm.github.io/wasm-bindgen/"
9include = ["/LICENSE-*", "/src"]
10license = "MIT OR Apache-2.0"
11name = "wasm-bindgen-backend"
12repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
13rust-version = "1.57"
14version = "0.2.100"
15
16[features]
17extra-traits = ["syn/extra-traits"]
18
19[dependencies]
20bumpalo = "3.0.0"
21log = "0.4"
22proc-macro2 = "1.0"
23quote = '1.0'
24syn = { version = '2.0', features = ['full'] }
25wasm-bindgen-shared = { path = "../shared", version = "=0.2.100" }
26
27[lints]
28workspace = true
29