Skip to content
This repository was archived by the owner on Jun 6, 2018. It is now read-only.

Commit 0887071

Browse files
committed
Merge pull request #41 from excaliburHisSheath/collada-work
COLLADA Parsing Improvements
2 parents b0d5536 + a207267 commit 0887071

File tree

12 files changed

+1672
-963
lines changed

12 files changed

+1672
-963
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "gunship"
4-
version = "0.0.1"
4+
version = "0.0.2"
55
authors = ["David LeGare <excaliburhissheath@gmail.com>"]
66

77
[lib]
@@ -24,8 +24,8 @@ stopwatch = { path = "lib/stopwatch" }
2424
[dev_dependencies]
2525
rand = "*"
2626

27-
[profile.dev]
28-
opt-level = 1
27+
# [profile.dev]
28+
# opt-level = 1
2929

3030
[profile.release]
3131
# lto = true

lib/bootstrap_audio/src/windows.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::mem;
66

77
use self::winapi::*;
88

9-
#[derive(Debug)] #[allow(raw_pointer_derive)]
9+
#[derive(Debug)]
1010
pub struct AudioSource {
1111
audio_client: *mut IAudioClient,
1212
render_client: *mut IAudioRenderClient,

lib/bootstrap_rs/src/linux/window.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ use window::Message;
1212
use input::ScanCode;
1313

1414
#[derive(Debug, Clone)]
15-
#[allow(raw_pointer_derive)]
1615
pub struct Window {
1716
pub display: *mut xlib::Display,
1817
pub window: xlib::Window,

lib/parse_collada/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "parse_collada"
4-
version = "0.1.0"
4+
version = "0.2.0"
55
authors = ["David LeGare <excaliburhissheath@gmail.com>"]
66

77
[dependencies.parse_xml]

0 commit comments

Comments
 (0)