forked from tedsta/rust-opencl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 851 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
[package]
name = "opencl"
version = "0.3.0-dev"
authors = [ "Colin Sherratt <[email protected]>",
"Eric Holk <[email protected]>",
"Ian Daniher <[email protected]>",
"Luqman Aden <[email protected]>",
"Milinda Pathirage <[email protected]>",
"Sébastien Crozet <[email protected]>",
"Mathijs Henquet <[email protected]>"
]
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"
[build-dependencies]
pkg-config = "0.3.3"
[dependencies]
log = "^0.3.1"
libc = "^0.1.8"