forked from luqmana/rust-opencl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 808 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
[package]
name = "opencl"
version = "0.3.0-dev"
authors = [ "Colin Sherratt <colin.sherratt@gmail.com>",
"Eric Holk <eholk@cs.indiana.edu>",
"Ian Daniher <it.daniher@gmail.com>",
"Luqman Aden <me@luqman.ca>",
"Milinda Pathirage <milinda.pathirage@gmail.com>",
"Sébastien Crozet <developer@crozet.re>",
"Mathijs Henquet <mathijs.henquet@gmail.com>"
]
repository = "https://github.com/luqmana/rust-opencl"
license = "MIT/Apache-2.0"
description = "OpenCL bindings for Rust."
keywords = ["opencl", "bindings", "ffi", "gpu", "compute"]
[lib]
name = "opencl"
[[example]]
name = "demo"
path = "examples/demo/main.rs"
[[example]]
name = "platform"
path = "examples/platform/main.rs"
[dependencies]
log = "^0.3.1"
libc = "^0.1.8"