forked from servo/surfman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (36 loc) · 1.11 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
[package]
name = "offscreen_gl_context"
license = "MIT / Apache-2.0"
version = "0.1.0"
authors = ["ecoal95 <[email protected]>", "The Servo Project Developers"]
description = "Creation and manipulation of HW accelerated offscreen rendering contexts in multiple platforms. Originally intended for the Servo project WebGL implementation."
repository = "https://github.com/ecoal95/rust-offscreen-rendering-context"
build = "build.rs"
[build-dependencies]
gl_generator = "0.4"
khronos_api = "1.0"
# NOTE: Just for testing use, there are no other changes
[features]
default = []
test_egl_in_linux = []
[dependencies]
log = "0.3.3"
gleam = "0.2"
euclid = "0.4"
serde = "0.6.1"
serde_macros = "0.6.1"
[target.x86_64-apple-darwin.dependencies]
core-foundation = "0.2.0"
cgl = "0.1"
[target.i686-unknown-linux-gnu.dependencies.x11]
version = "2.3.0"
features = ["xlib"]
[target.x86_64-unknown-linux-gnu.dependencies.x11]
version = "2.3.0"
features = ["xlib"]
[target.arm-unknown-linux-gnueabihf.dependencies.x11]
version = "2.3.0"
features = ["xlib"]
[target.aarch64-unknown-linux-gnu.dependencies.x11]
version = "2.3.0"
features = ["xlib"]