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
wasm-bindgen
import_map
serde_json/preserve_order
indexmap
hashbrown
ahash
const-random
and the result is
❯ cargo check Updating crates.io index error: cyclic package dependency: package `ahash v0.7.6` depends on itself. Cycle: package `ahash v0.7.6` ... which satisfies dependency `ahash = "^0.7.0"` of package `hashbrown v0.11.2` ... which satisfies dependency `hashbrown = "^0.11"` of package `indexmap v1.8.0` ... which satisfies dependency `indexmap = "^1.5"` of package `serde_json v1.0.79` ... which satisfies dependency `serde_json = "^1.0"` of package `wasm-bindgen v0.2.79` ... which satisfies dependency `wasm-bindgen = "^0.2.79"` of package `js-sys v0.3.56` ... which satisfies dependency `js-sys = "^0.3"` of package `getrandom v0.2.3` ... which satisfies dependency `getrandom = "^0.2.0"` of package `const-random-macro v0.1.13` ... which satisfies dependency `const-random-macro = "^0.1.13"` of package `const-random v0.1.13` ... which satisfies dependency `const-random = "^0.1.12"` of package `ahash v0.7.6`
The text was updated successfully, but these errors were encountered:
It works if I use indexmap@~1.6.2
indexmap@~1.6.2
But it requires import_map@0.3.3.
import_map@0.3.3
Can you reduce the restriction of indexmap dependency to 1.6 or lower? (and publish 😄 )
1.6
Sorry, something went wrong.
We had to upgrade to 1.7 because of swc (https://github.com/swc-project/swc/blob/e21a40e55ed34c062e40d3986c03d3e981ef6a59/crates/swc_fast_graph/Cargo.toml#L16)
#15 denoland/deno_ast#37 (comment)
Related issue: tkaitchuck/aHash#95
No branches or pull requests
import_map
enablesserde_json/preserve_order
serde_json/preserve_order
depends onindexmap
(https://docs.rs/crate/serde_json/latest/features)indexmap
depends onhashbrown
hashbrown
depends onahash
by default.ahash
depends onconst-random
and the result is
The text was updated successfully, but these errors were encountered: