Remove net::uri in favor of std::net::url

This commit is contained in:
Brian Anderson 2012-07-27 11:23:36 -07:00
parent a92de77791
commit c64c17fac3
2 changed files with 0 additions and 17 deletions

View file

@ -1,13 +0,0 @@
export uri, build_uri;
type uri = {
spec: ~str,
scheme: ~str,
host: option<~str>,
port: option<uint>,
path: ~str
};
fn build_uri(_spec: ~str) -> uri {
fail
}

View file

@ -107,10 +107,6 @@ mod util {
mod content {
}
mod net {
mod uri;
}
mod opts;
mod engine;