diff --git a/README.md b/README.md index 7cd73e3c..6c9ab47f 100644 --- a/README.md +++ b/README.md @@ -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; diff --git a/lib.rs b/lib.rs index 5ccc4591..d3a88a4d 100644 --- a/lib.rs +++ b/lib.rs @@ -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;