Conflicts: .travis.yml Cargo.toml examples/fullscreen.rs src/api/android/mod.rs src/api/cocoa/headless.rs src/api/cocoa/helpers.rs src/api/cocoa/mod.rs src/api/glx/mod.rs src/api/osmesa/mod.rs src/api/win32/callback.rs src/headless.rs src/lib.rs src/platform/linux/mod.rs src/window.rs
This commit is contained in:
commit
7f6ae8910e
22 changed files with 332 additions and 194 deletions
17
Cargo.toml
17
Cargo.toml
|
|
@ -7,27 +7,30 @@ keywords = ["windowing"]
|
|||
license = "Apache-2.0"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tomaka/winit"
|
||||
documentation = "https://tomaka.github.io/winit/"
|
||||
documentation = "https://docs.rs/winit"
|
||||
|
||||
[dependencies]
|
||||
lazy_static = "0.1.10"
|
||||
lazy_static = "0.2.0"
|
||||
libc = "0.2"
|
||||
shared_library = "0.1.0"
|
||||
|
||||
[target.arm-linux-androideabi.dependencies.android_glue]
|
||||
# [build-dependencies]
|
||||
# gl_generator = "0.5"
|
||||
|
||||
[target.'cfg(target_os = "android")'.dependencies.android_glue]
|
||||
version = "0.2"
|
||||
|
||||
[target.'cfg(target_os="ios")'.dependencies]
|
||||
[target.'cfg(target_os = "ios")'.dependencies]
|
||||
objc = "0.2"
|
||||
|
||||
[target.'cfg(target_os="macos")'.dependencies]
|
||||
[target.'cfg(target_os = "macos")'.dependencies]
|
||||
objc = "0.2"
|
||||
cgl = "0.1"
|
||||
cocoa = "0.3"
|
||||
cocoa = "0.3.2"
|
||||
core-foundation = "0"
|
||||
core-graphics = "0.3"
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
[target.'cfg(target_os = "windows")'.dependencies]
|
||||
winapi = "0.2"
|
||||
shell32-sys = "0.1"
|
||||
gdi32-sys = "0.1"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue