We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After #28317, it is not possible to provide custom property extractor for deno_http.
This probably due to the Feature unification of cargo, so my default-features = false does not work as expected.
default-features = false
# Cargo.toml [package] name = "runtime" version = "0.1.0" edition = "2024" [dependencies] deno_http = { version = "0.192.0", default-features = false } deno_runtime = { version = "0.202.0", features = ["transpile"] }
$ cargo tree -f "{p} {f}" runtime v0.1.0 (/Users/vanppo/Downloads/runtime) ├── deno_http v0.192.0 default,default_property_extractor └── deno_runtime v0.202.0 deno_ast,transpile └── deno_http v0.192.0 default,default_property_extractor (*)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After #28317, it is not possible to provide custom property extractor for deno_http.
This probably due to the Feature unification of cargo, so my
default-features = false
does not work as expected.The text was updated successfully, but these errors were encountered: