Update links & copyright statement

This commit is contained in:
Thom Chiovoloni
2020-04-15 21:07:23 -07:00
committed by Thom Chiovoloni
parent 45fd77ee43
commit 9322b0e881
9 changed files with 14 additions and 13 deletions

View File

@@ -1,9 +1,9 @@
[package]
name = "libsqlite3-sys"
version = "0.18.0"
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
authors = ["The rusqlite developers"]
edition = "2018"
repository = "https://github.com/jgallagher/rusqlite"
repository = "https://github.com/rusqlite/rusqlite"
description = "Native bindings to the libsqlite3 library"
license = "MIT"
links = "sqlite3"

View File

@@ -247,7 +247,7 @@ mod build_linked {
// No env var set and pkg-config couldn't help; just output the link-lib
// request and hope that the library exists on the system paths. We used to
// output /usr/lib explicitly, but that can introduce other linking problems;
// see https://github.com/jgallagher/rusqlite/issues/207.
// see https://github.com/rusqlite/rusqlite/issues/207.
println!("cargo:rustc-link-lib={}={}", find_link_mode(), link_lib);
HeaderLocation::Wrapper
}