Getting started
Fugue relies on a dedicated crate registry, located
here. To use
Fugue's crates inside your project you must add this registry
to your .cargo/config
file:
[registries]
fugue = { index = "ssh://git@github.com/fugue-re/fugue-oss-registry.git" }
Each crate can then be referenced in your Cargo.toml
, as below:
[dependencies]
fugue = { version = "0.2", registry = "fugue" }