From 0389eb1c526902d065059c81fe0f6cb3a9dd5e93 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Wed, 20 May 2015 13:14:21 -0500 Subject: [PATCH] Move secp256k1 lib from sipa's (long expired) repo to the bitcoin one --- .travis.yml | 2 +- Cargo.toml | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4f2898a..1fd3c43 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: rust install: - - git clone https://github.com/sipa/secp256k1.git + - git clone https://github.com/bitcoin/secp256k1.git - cd secp256k1 - ./autogen.sh && ./configure && make && sudo make install - sudo ldconfig /usr/local/lib diff --git a/Cargo.toml b/Cargo.toml index 6453b87..8552f49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,16 @@ [package] name = "bitcoin" -version = "0.0.1" +version = "0.1.0" authors = ["Andrew Poelstra "] +license = "CC0-1.0" +homepage = "https://github.com/apoelstra/rust-bitcoin/" +repository = "https://github.com/apoelstra/rust-bitcoin/" +documentation = "https://www.wpsoftware.net/rustdoc/bitcoin/" +description = "General purpose library for using and interoperating with Bitcoin and other cryptocurrencies." +keywords = [ "crypto", "bitcoin" ] +readme = "README.md" + [lib] name = "bitcoin"