Change name to secp256k1 from bitcoin-secp256k1-rs

[breaking-change]
This commit is contained in:
Andrew Poelstra 2015-03-25 17:20:44 -05:00
parent 825e77519f
commit d2fcbbe95a
2 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
[package] [package]
name = "bitcoin-secp256k1-rs" name = "secp256k1"
version = "0.0.1" version = "0.0.1"
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>", authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
"Andrew Poelstra <apoelstra@wpsoftware.net" ] "Andrew Poelstra <apoelstra@wpsoftware.net" ]
[lib] [lib]
name = "bitcoin-secp256k1-rs" name = "secp256k1"
path = "src/secp256k1.rs" path = "src/secp256k1.rs"
[dependencies.rust-crypto] [dependencies.rust-crypto]

View File

@ -23,7 +23,7 @@
#![crate_type = "lib"] #![crate_type = "lib"]
#![crate_type = "rlib"] #![crate_type = "rlib"]
#![crate_type = "dylib"] #![crate_type = "dylib"]
#![crate_name = "bitcoin-secp256k1-rs"] #![crate_name = "secp256k1"]
// Keep this until 1.0 I guess; it's needed for `black_box` at least // Keep this until 1.0 I guess; it's needed for `black_box` at least
#![allow(unstable)] #![allow(unstable)]