Skip to content

Instantly share code, notes, and snippets.

@nilsso
Created June 3, 2019 00:06
Show Gist options
  • Select an option

  • Save nilsso/49faef89d22d057883219cef3d616389 to your computer and use it in GitHub Desktop.

Select an option

Save nilsso/49faef89d22d057883219cef3d616389 to your computer and use it in GitHub Desktop.
My notes on Rust

Crates

Dependencies

Intellij IDEA with Intellij Rust sometimes can't pickup on re-exported libraries for auto-completion. To get around this, adding a dependency and renaming it can work. For example Amethyst re-exports specs to ecs, so adding a dependency ecs = { package = "specs", version = "0.14" } gets auto-completion working on ecs::.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment