Stop using rustpkg-style extern mods

This commit is contained in:
Steven Fackler 2014-01-20 15:56:47 -08:00
parent 4feae133e1
commit e22ef497a7
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ Rust-Postgres is a pure-Rust frontend for the popular PostgreSQL database. It
exposes a high level interface in the vein of JDBC or Go's `database/sql`
package.
```rust
extern mod postgres = "github.com/sfackler/rust-postgres";
extern mod postgres;
extern mod extra;
use extra::time;

2
lib.rs
View File

@ -4,7 +4,7 @@ exposes a high level interface in the vein of JDBC or Go's `database/sql`
package.
```rust
extern mod postgres = "github.com/sfackler/rust-postgres";
extern mod postgres;
extern mod extra;
use extra::time;