Update crates with correct crate_type attribute

This commit is contained in:
Brian Anderson 2012-01-17 14:40:59 -08:00
parent 47b9fc278e
commit c0df13958c
4 changed files with 7 additions and 1 deletions

View File

@ -15,4 +15,6 @@
uuid = "9ff87a04-8fed-4295-9ff8-f99bb802650b",
url = "http://rust-lang.org/doc/cargo")];
#[crate_type = "bin"];
mod pgp;

View File

@ -7,7 +7,7 @@
#[desc = "The Rust compiler"];
#[license = "MIT"];
#[crate_type = "bin"];
#[crate_type = "lib"];
use std (name = "std",
vers = "0.1",

View File

@ -1,3 +1,5 @@
#[crate_type = "bin"];
use std;
mod procsrv;

View File

@ -1,5 +1,7 @@
// -*- rust -*-
#[crate_type = "bin"];
use std;
use rustc;