Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to current rust #30

Merged
merged 3 commits into from Apr 10, 2014
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Next

Update to current rust: use the new attributes syntax.

  • Loading branch information
Ms2ger committed Apr 10, 2014
commit a39ffd33204f9055fa632f2dfb5019c3d59306e8
2 ffi.rs
@@ -7,7 +7,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#[allow(non_camel_case_types)];
#![allow(non_camel_case_types)]

use std::libc::{c_int, size_t, c_void, c_char};

8 lib.rs
@@ -7,10 +7,10 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#[crate_id = "github.com/mozilla-servo/rust-png#png:0.1"];
#[crate_type = "lib"];
#[crate_type = "dylib"];
#[crate_type = "rlib"];
#![crate_id = "github.com/mozilla-servo/rust-png#png:0.1"]
#![crate_type = "lib"]
#![crate_type = "dylib"]
#![crate_type = "rlib"]

extern crate std;
use std::cast;
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.