-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
40 lines (34 loc) · 863 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "framebuffer"
version = "0.3.1"
authors = ["Roy van der Vegt <[email protected]>"]
edition = "2018"
description = """
Basic framebuffer abstraction. Handles the necessary ioctls and mmaps the framebuffer device.
"""
keywords = ["framebuffer", "fb"]
documentation = "http://roysten.github.io/rust-framebuffer/target/doc/framebuffer/"
repository = "https://github.com/roysten/rust-framebuffer"
license = "WTFPL"
[lib]
name = "framebuffer"
path = "src/lib.rs"
[dependencies]
libc = "0.2"
memmap = "0.7"
errno = "0.2.7"
[[example]]
name = "rust-logo"
path = "examples/rust-logo/main.rs"
[[example]]
name = "starfield"
path = "examples/starfield/main.rs"
[[example]]
name = "mandelbrot"
path = "examples/mandelbrot/main.rs"
[[example]]
name = "sierpinski"
path = "examples/sierpinski/main.rs"
[dev_dependencies]
bmp = "0.1.4"
rand = "0.8"