Open benkeil opened 1 year ago
Thanks for testing this. The route matching seems to be messed up, I will have a look at it.
The configuration in the Cargo.toml also don't work. When running cargo build --target=wasm32-wasi everything works fine.
The [build]
and [target.wasm32-wasi]
sections go into the .cargo/config.toml
file, like here, not into the Cargo.toml
. That's why it's failing.
@bkolobara were you ever able to look into this? I'm still running into this problem with Structs with a non String Type included and all Tuples provided to Path
http://localhost:3000/users/1/2/3
=>Welcome 1 2. You are 1 years old.
http://localhost:3000/1/2/
It's also not possible to create
NamedParam
with only one param.The configuration in the
Cargo.toml
also don't work. When runningcargo build --target=wasm32-wasi
everything works fine.But
cargo build
fails.