Compiling inlay v0.2.1 (D:\tools\inlay) error[E0254]: the name `flame` is defined multiple times --> src\main.rs:29:31 | 11 | #[cfg(feature = "flame")] extern crate flame; | ------------------- previous import of the extern crate `flame` here ... 29 | #[cfg(feature = "flame")] use flame; | ^^^^^ `flame` reimported here | = note: `flame` must be defined only once in the type namespace of this module help: you can use `as` to change the binding name of the import | 29 | #[cfg(feature = "flame")] use flame as other_flame; | ^^^^^^^^^^^^^^^^^^^^ error[E0425]: cannot find function `stop` in module `flame` --> src\encode.rs:51:45 | 51 | #[cfg(feature = "flame")]flame::stop("field"); | ^^^^ not found in `flame` error[E0425]: cannot find function `stop` in module `flame` --> src\encode.rs:55:45 | 55 | #[cfg(feature = "flame")]flame::stop("write field"); | ^^^^ not found in `flame` error[E0425]: cannot find function `stop` in module `flame` --> src\encode.rs:57:42 | 57 | #[cfg(feature = "flame")] flame::stop("rows"); | ^^^^ not found in `flame` error[E0425]: cannot find function `stop` in module `flame` --> src\encode.rs:76:49 | 76 | #[cfg(feature = "flame")]flame::stop("field"); | ^^^^ not found in `flame` error[E0425]: cannot find function `stop` in module `flame` --> src\encode.rs:82:49 | 82 | #[cfg(feature = "flame")]flame::stop("record"); | ^^^^ not found in `flame` error[E0425]: cannot find function `stop` in module `flame` --> src\encode.rs:85:41 | 85 | #[cfg(feature = "flame")]flame::stop("columns"); | ^^^^ not found in `flame` error[E0425]: cannot find function `stop` in module `flame` --> src\encode.rs:88:37 | 88 | #[cfg(feature = "flame")]flame::stop("encode"); | ^^^^ not found in `flame` error[E0425]: cannot find function `stop` in module `flame` --> src\decode.rs:46:45 | 46 | #[cfg(feature = "flame")]flame::stop("read field"); | ^^^^ not found in `flame` error[E0425]: cannot find function `stop` in module `flame` --> src\decode.rs:62:45 | 62 | #[cfg(feature = "flame")]flame::stop("write field"); | ^^^^ not found in `flame` error[E0425]: cannot find function `stop` in module `flame` --> src\decode.rs:64:41 | 64 | #[cfg(feature = "flame")]flame::stop("decoding from templates"); | ^^^^ not found in `flame` error[E0425]: cannot find function `stop` in module `flame` --> src\decode.rs:71:37 | 71 | #[cfg(feature = "flame")]flame::stop("decode"); | ^^^^ not found in `flame` error[E0425]: cannot find function `stop` in module `flame` --> src\main.rs:242:38 | 242 | #[cfg(feature = "flame")] flame::stop("inlay"); | ^^^^ not found in `flame` error: aborting due to 13 previous errors Some errors occurred: E0254, E0425. For more information about an error, try `rustc --explain E0254`. error: Could not compile `inlay`. To learn more, run the command again with --verbose.