- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 crate A
依赖于 B
和 B
依赖于 rust-nmea crate 。
如果我构建 crate A
,我在构建 rust-nmea 期间遇到了一堆错误(所有错误都错过了 use std::error::Error;
)依赖:
error[E0599]: no method named `description` found for type `nom::Err<&[u8]>` in the current scope
--> /home/evgeniy/.cargo/registry/src/github.com-1ecc6299db9ec823/nmea-0.0.6/src/parse.rs:100:44
|
100 | IError::Error(e) => e.description().to_string(),
| ^^^^^^^^^^^
|
= help: items from traits can only be used if the trait is in scope
= note: the following trait is implemented but not in scope, perhaps add a `use` for it:
candidate #1: `use std::error::Error;`
但是,如果我转到 B
crate 的源代码树并运行 cargo build
,所有构建都没有任何错误(如果你跟着我 A
依赖 B
和 B
依赖 rust-nmea ),
如果转到 /home/evgeniy/.cargo/registry/src/github.com-1ecc6299db9ec823/nmea-0.0.6/
(见编译错误)并运行 cargo build
然后一切都很好。
A
的 cargo 树显示:
│ ├── chrono v0.4.0
│ │ ├── num v0.1.40
│ │ │ ├── num-integer v0.1.35
│ │ │ │ └── num-traits v0.1.40
│ │ │ ├── num-iter v0.1.34
│ │ │ │ ├── num-integer v0.1.35 (*)
│ │ │ │ └── num-traits v0.1.40 (*)
│ │ │ └── num-traits v0.1.40 (*)
│ │ └── time v0.1.38
│ │ └── libc v0.2.27
├── nmea v0.0.6
│ ├── chrono v0.4.0 (*)
│ └── nom v3.2.0
│ └── memchr v1.0.1 (*)
并由 cargo
缓存 rust-nmea :
├── chrono v0.4.0
│ ├── num v0.1.40
│ │ ├── num-integer v0.1.35
│ │ │ └── num-traits v0.1.40
│ │ ├── num-iter v0.1.34
│ │ │ ├── num-integer v0.1.35 (*)
│ │ │ └── num-traits v0.1.40 (*)
│ │ └── num-traits v0.1.40 (*)
│ └── time v0.1.38
│ └── libc v0.2.27
└── nom v3.2.0
└── memchr v1.0.1
└── libc v0.2.27 (*)
因此无论是好的还是坏的情况都使用相同的依赖关系。
如果运行 cargo build -v -j1
,两种情况下我都会得到 rustc
命令行。
好的和坏的情况的唯一区别是这部分:
-L dependency=/home/evgeniy/.cargo/registry/src/github.com-1ecc6299db9ec823/nmea-0.0.6/target/debug/deps --extern chrono=/home/evgeniy/.cargo/registry/src/github.com-1ecc6299db9ec823/nmea-0.0.6/target/debug/deps/libchrono-8e9e54e691d9b988.rlib --extern nom=/home/evgeniy/.cargo/registry/src/github.com-1ecc6299db9ec823/nmea-0.0.6/target/debug/deps/libnom-b72336f662b090c1.rlib
坏情况有不同的库路径和 libnom-e2ec53418967eac0.rlib
而不是 libnom-b72336f662b090c1.rlib
,而 libchrono-8e9e54e691d9b988.rlib
匹配。
crate A
和 B
是封闭源代码,我无法将问题简化为更简单的情况。 nom A
和 B
中未使用的箱子,除非通过 rust-nmea . rust-nmea用法很简单,就是Cargo.toml
中的nmea = 0.0.6
。没有旗帜之类的东西。
知道为什么用相同的标志创建依赖项(根本没有标志)可能产生或不产生语法错误?
最佳答案
我找到了问题的根源,crate A
与 cexpr
有二级依赖关系,cexpr
在 Cargo.toml
中有 nom = {version = "^3", features = ["verbose-errors"] }
,rust-nmea
也依赖于 nom
,所以我们有编译时错误。
关于rust - 相同代码 : spurious compile time errors? 的 cargo 构建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45281538/
以下 latex 输入: \rule{1cm}{1cm}\\ \rule{1cm}{1cm} 在盒子之间留下大约 0.35 毫米的间隙。定义此间隙的长度是多少? 最佳答案 编辑 :起初我只是部分正确,
我有几个线程执行一些工作,然后必须进入休眠/等待不确定的时间。稍后他们都需要被叫醒并继续工作。我可以通过在对象上调用 wait() ,然后在需要恢复时在同一对象上调用 notifyall() 来实现此
当我在 eclipse 或 netbeans 中运行客户端时,我的客户端程序出现问题,出现运行时错误 java.lang.RuntimeException: Spurious Serializatio
我正在尝试使用 Apache-ant 设置 nightlybuilds。我有 apache-ant-1.8.2,带有 Java 1.6,在 openSUSE 11.4 64 位上。 我设置了一个单独的
我知道这听起来是个懒惰的问题..但我真的不知道这种情况是如何发生的,我在谷歌上也找不到太多相关信息。 背景: 这是一个带有 IPC 的应用程序:我有一个在单独进程中运行的服务。有时,服务被杀死了……但
在下面的语句中,即使没有调用通知,wait() 方法也会执行,但是 below() 语句仅在 laurel 之后执行 线程完成它的执行。 我尝试使用其他对象来锁定 hardy block 的同步,这次
我正在编写一个非常简单的 ObjC 应用程序。 (唯一的小复杂性是它使用一个名为 Chilkat 的外部库来实现一些基本网络,但我认为这不相关。) 偶尔,我的项目会自发地弹出这个警告消息: May 1
我有几个从一组中合并的观察者。由于某种原因,合并的可观察量正在调用 onComplete,即使单个可观察量没有调用。 示例: Set> set = new HashSet>(); for (O
当我尝试编译时,我收到以下警告: warning: spurious trailing ‘%’ in format [-Wformat=] warning: too many arguments fo
Java AtomicInteger 类有一个方法 - boolean weakCompareAndSet(int expect,int update) 它的文档说: May fail spuriou
我写了一个很简单的printf uint64_t的测试代码: #include #include int main() { uint64_t ui64 = 90; printf("test
我有 crate A 依赖于 B 和 B 依赖于 rust-nmea crate 。 如果我构建 crate A,我在构建 rust-nmea 期间遇到了一堆错误(所有错误都错过了 use std::
我正在阅读 CLRS,因为我遇到了这条线“然后我们可以预期虚假命中的数量是 O(n/q),因为任意 ts 的机会等于 p,模 q,可以估计为 1/q。” 我将包含完整描述的网站放在 34.2 主题下
我需要创建一个数据库补丁,将 MongoDB 集合的所有元素更新为新格式。例如,经过大大简化,旧格式的文档如下: { "_id" : ObjectId("572a7f30200cd11355083
我有一个 repo 协议(protocol),我向它添加了一个 gitattributes 并且工作正常。我通过保管箱将其同步到另一台机器。当我在另一台机器上打开它时,一堆文件突然出现在未暂存区域作为
我正在尝试在通常连接到我公司域的 Windows 10 笔记本电脑上为本地用户设置 Rust 编程环境。使用 rustup 安装稳定版本的 Rust通过 rustup-init.exe完成没有问题,但
我是一名优秀的程序员,十分优秀!