无法编译环包:找不到模块`montgomery`的文件

时间:2017-12-22 12:40:33

标签: rust rust-cargo

货物未编译时出现以下错误:

$ cargo build
Compiling ring v0.12.1
error[E0583]: file not found for module `montgomery`
    --> 
 C:\Users\jmccrae\.cargo\registry\src\github.com1ecc6299db9ec823\ring-0.12.1\src\arithmetic/arithmetic.rs:15:9
   |
15 | pub mod montgomery;
   |         ^^^^^^^^^^
   |
   = help: name the file either arithmetic\montgomery.rs or arithmetic\montgomery\mod.rs inside the directory 
"C:\\Users\\jmccrae\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\ring-0.12.1\\src\\arithmetic"

该项目是一个新项目,修改了Cargo.toml,以包含对ring箱子的最新版本(0.12.1)的依赖。 Cargo.toml如下:

[package]
name = "testring"
version = "0.1.0"
authors = ["John McCrae <john@mccr.ae>"]

[dependencies]
ring = "0.12.1"

所需文件似乎确实存在:

$ ls  C:\\Users\\jmccrae\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\ring-0.12.1\\src\\arithmetic
arithmetic.rs  montgomery.rs

货物版本为cargo 0.25.0-nightly (930f9d949 2017-12-05),它在MINGW上运行。

编译器设置有什么问题吗?

1 个答案:

答案 0 :(得分:2)

这是an issue with Ring and Rust 1.24.0-nightly (2017-12-21)。它还有一个关联的issue in the Rust repository

要解决这个问题,请每晚使用较旧版本的Rust(如果可以的话,每晚使用一次)。