Update crates with correct crate_type attribute
This commit is contained in:
parent
47b9fc278e
commit
c0df13958c
4 changed files with 7 additions and 1 deletions
|
@ -15,4 +15,6 @@
|
|||
uuid = "9ff87a04-8fed-4295-9ff8-f99bb802650b",
|
||||
url = "http://rust-lang.org/doc/cargo")];
|
||||
|
||||
#[crate_type = "bin"];
|
||||
|
||||
mod pgp;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#[desc = "The Rust compiler"];
|
||||
#[license = "MIT"];
|
||||
#[crate_type = "bin"];
|
||||
#[crate_type = "lib"];
|
||||
|
||||
use std (name = "std",
|
||||
vers = "0.1",
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#[crate_type = "bin"];
|
||||
|
||||
use std;
|
||||
|
||||
mod procsrv;
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
// -*- rust -*-
|
||||
|
||||
#[crate_type = "bin"];
|
||||
|
||||
use std;
|
||||
use rustc;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue