From e22ef497a7c2df7f61abf22fd02d558b2aa5f4e2 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 20 Jan 2014 15:56:47 -0800 Subject: [PATCH] Stop using rustpkg-style extern mods --- README.md | 2 +- lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;