我这里有非常简单的程序。我能够构建这个程序cargo build
,正如你在 GitHub 页面中看到的那样,它也在 Travis-CI 上正确构建。
但是,该命令cargo package
失败并出现以下错误:
error: extern location for cellular_maps does not exist: D:\UserFolder\Code\CellularMaps-Rust\target/package/cellular_maps-0.0.3\target\debug\libcellular_maps-ae97300493a8edd3.rlib
src\main.rs:1:1: 1:28 error: can't find crate for `cellular_maps`
src\main.rs:1 extern crate cellular_maps;
我能够在 crates.io 上使用较旧的 rust 版本发布这个小型库。它改变了一些东西还是只是货物中的一个错误?(如果你仔细看,你可以看到路径中有混合的反斜杠和斜杠。)
锈版本是
rustc 1.0.0-nightly (91bdf23f5 2015-03-09) (built 2015-03-09)
货运版是
cargo 0.0.1-pre-nightly (b27cd47 2015-03-07) (built 2015-03-09)
我正在使用 Windows 机器。
谢谢!