我是 Rust 的新手,我正在尝试使用Conrod 库打开一个窗口,就像他们在canvas.rs
示例中所做的那样:
#[macro_use] extern crate conrod;
extern crate find_folder;
extern crate piston_window;
use conrod::{Canvas, Theme, Widget, color};
use piston_window::{EventLoop, OpenGL, PistonWindow, UpdateEvent, WindowSettings};
fn main() {
const WIDTH: u32 = 800;
const HEIGHT: u32 = 600;
// Change this to OpenGL::V2_1 if not working.
let opengl = OpenGL::V3_2;
// Construct the window.
let mut window: PistonWindow =
WindowSettings::new("Canvas Demo", [WIDTH, HEIGHT].opengl(opengl).exit_on_esc(true).vsync(true).build().unwrap();
window.set_ups(60);
}
当我在 Conrod 项目(我从 GitHub 下载的那个)的一个文件中使用此代码时,它可以工作,但是当我在自己的代码中使用它时它不起作用:
extern crate conrod;
extern crate piston_window;
fn main() {
println!("Hello, world!");
}
使用以下 Cargo.toml:
[package]
name = "hello_conrod"
version = "0.1.0"
authors = ["omega"]
[dependencies]
conrod = "0.37.2"
然后编译器告诉我:
error: can't find crate for `piston_window` [E0463]
我想我Cargo.toml
错了,但我不知道我应该做什么。