-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (24 loc) · 861 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
[package]
name = "dynamic_ocl"
description = "Dynamically-loaded OpenCL bindings"
version = "0.1.0-alpha.1"
authors = ["Dana Marcuse <[email protected]>"]
edition = "2018"
readme = "README.md"
homepage = "https://github.com/dmarcuse/dynamic_ocl"
repository = "https://github.com/dmarcuse/dynamic_ocl"
keywords = [ "opencl", "ocl", "gpu", "gpgpu", "compute" ]
categories = [ "api-bindings", "concurrency", "external-ffi-bindings", "hardware-support", "science" ]
license = "Apache-2.0"
[dependencies]
libc = "0.2.66"
dlopen = "0.1.8"
thiserror = { version = "1.0.9", optional = true }
lazy_static = "1.4.0"
const-cstr = "0.3.0"
generic-array = { version = "0.13.2", optional = true }
log = { version = "0.4.8", optional = true }
tynm = { version = "0.1.1", optional = true }
[features]
safe = [ "thiserror", "generic-array", "log", "tynm" ]
default = [ "safe" ]