-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
47 lines (41 loc) · 1.12 KB
/
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
41
42
43
44
45
46
47
[package]
name = "processing"
version = "0.3.2"
authors = ["Robert Ennis <[email protected]>"]
description = """
An implementation of the Processing environment for Rust, with influences from Cinder and
openFrameworks. It is written with Glium and has a Glutin and a GLFW backend. Tested so far
on macOS and Linux. It has been developed by Robert Ennis in the lab of Katja Doerschner,
a part of the Allgemeine Psychologie Department at the Justus-Liebig Universitaet of Giessen.
"""
license = "MIT"
repository = "https://github.com/rennis250/processing-rs"
keywords = ["processing", "opengl", "generative", "art", "psychophysics"]
exclude = [
"benches/*",
"test.jpg"
]
build = "build.rs"
[dependencies]
glium = "0.21"
gl = "0.6.3"
nalgebra = "0.16.6"
image = "0.17.0"
owning_ref = "0.3.3"
[build-dependencies]
cc = "1.0"
[features]
default = []
glfwp5 = ["glfw"]
[dependencies.glfw]
default-features = false
version = "0.22"
features = ["image"]
optional = true
[dev-dependencies]
rand = "0.5.5"
num-traits = "0.1.40"
time = "0.1.38"
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.11.0"
objc = "0.2.2"