- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将一个 crate 用作我自己的一些代码的库(具体来说是 speedtest-rs,但这并不重要)。但是,每当我尝试使用这个 crate 时,编译器都不想很好地使用它。
$ cargo build
Compiling my-project v0.1.0 (/home/nick/Documents/code/my-project)
error[E0432]: unresolved import `speedtest_rs`
--> src/main.rs:1:5
|
1 | use speedtest_rs::*;
| ^^^^^^^^^^^^ use of undeclared type or module `speedtest_rs`
看着
Rust book ,似乎二进制文件和库文件之间存在区别
The
rand
crate is a library crate which contains code intended to be used in other programs
最佳答案
Some googling has shown me that binary crates just have an extra link step, so I should be able to link against them, right?
I know a lot of Rust packages have both a library and a binary in them, but what do you do when an author does not seem to follow this pattern?
src/lib.rs
文件,没有任何东西被导出。这类似于将箱子中的所有元素设为私有(private)。你将无法使用任何东西。 关于rust - 链接到二进制箱子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63103964/
x bins, each with capacity y x*y items each (item, bin) pair has an associated score 在给定上述标准的情况下,是否有
我正在尝试在我的程序中使用 rustc crate。 #[macro_use] extern crate rustc; extern crate rustc_typeck; extern crate
我正在使用 Piston 构建 Rust 游戏,我正在尝试使用 SublimeLinter Rust package .当我打开 .rs 游戏文件时,出现以下 linter 错误: extern cr
我是一名优秀的程序员,十分优秀!