Skip to content

Commit

Permalink
Update to new inner attribute syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Mar 29, 2014
1 parent 761901d commit bf2dadd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#[feature(struct_variant, macro_rules)];
#[crate_id="github.com/sfackler/rust-openssl#openssl:0.0"];
#[crate_type="rlib"];
#[crate_type="dylib"];
#[doc(html_root_url="http://www.rust-ci.org/sfackler/rust-openssl/doc")];
#![feature(struct_variant, macro_rules)]
#![crate_id="github.com/sfackler/rust-openssl#openssl:0.0"]
#![crate_type="rlib"]
#![crate_type="dylib"]
#![doc(html_root_url="http://www.rust-ci.org/sfackler/rust-openssl/doc")]

#[cfg(test)]
extern crate serialize;
Expand Down
3 changes: 1 addition & 2 deletions ssl/ffi.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#[doc(hidden)];
#[allow(non_camel_case_types)];
#![allow(non_camel_case_types)]

use std::libc::{c_int, c_void, c_long, c_ulong, c_char};

Expand Down

0 comments on commit bf2dadd

Please sign in to comment.