1
Fork 0

Explicitly use version 0.2 of crates

This commit is contained in:
Brian Anderson 2012-04-05 17:30:26 -07:00
parent c83d61de93
commit d13c0c77a2
12 changed files with 53 additions and 21 deletions

View file

@ -9,8 +9,13 @@
#[license = "MIT"];
#[crate_type = "bin"];
use std;
use rustc;
#[no_core];
use core(vers = "0.2");
use std(vers = "0.2");
use rustc(vers = "0.2");
import core::*;
mod config;
mod parse;