gpt4 book ai didi

import - 找不到 `num` 的箱子

转载 作者:行者123 更新时间:2023-11-29 07:46:13 25 4
gpt4 key购买 nike

我正在尝试使用 Rust 中 num crate 中的 BigUints,我正在使用此代码导入它们:

extern crate num;

use num::bigint::BigUint;

但是,当我编译时它返回以下错误:

main.rs:1:1: 1:18 error: can't find crate for `num`
main.rs:1 extern crate num;
^~~~~~~~~~~~~~~~~
error: aborting due to previous error

我没有使用任何编译器标志。

我做错了什么?

最佳答案

I'm not using any compiler flags.

如果你只使用 rustc,那么你需要使用标志来获取 num crate

$ rustc foo.rs --extern num=/path/to/num.rlib

我认为应该这样做。当然,您必须获得 num crate 的副本:https://crates.io/crates/num链接到 https://github.com/rust-lang/num .

如果你使用 Cargo,你可以直接添加

num = "*"

Cargo.toml[dependencies] 部分,你就可以开始了。

关于import - 找不到 `num` 的箱子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29189615/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com