1[package] 2name = "example-fib-debug-wasm" 3version = "0.0.0" 4authors = ["The Wasmtime Project Developers"] 5edition = "2021" 6publish = false 7 8[lints] 9workspace = true 10 11[lib] 12crate-type = ["cdylib"] 13path = "fib.rs" 14name = "fib" 15 16