Update Cargo.toml for crates.io metadata; this marks the "official" 0.1.0 release
This commit is contained in:
parent
5602d6f988
commit
5bea30dbb9
21
Cargo.toml
21
Cargo.toml
|
@ -1,20 +1,25 @@
|
||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "secp256k1"
|
name = "secp256k1"
|
||||||
version = "0.0.1"
|
version = "0.1.0"
|
||||||
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
|
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
|
||||||
"Andrew Poelstra <apoelstra@wpsoftware.net" ]
|
"Andrew Poelstra <apoelstra@wpsoftware.net" ]
|
||||||
|
license = "CC0-1.0"
|
||||||
|
homepage = "https://github.com/apoelstra/rust-secp256k1/"
|
||||||
|
repository = "https://github.com/apoelstra/rust-secp256k1/"
|
||||||
|
documentation = "https://www.wpsoftware.net/rustdoc/secp256k1/"
|
||||||
|
description = "Rust bindings for Pieter Wuille's `libsecp256k1` library. Implements ECDSA for the SECG elliptic curve group secp256k1 and related utilities."
|
||||||
|
keywords = [ "crypto", "ECDSA", "secp256k1", "libsecp256k1", "bitcoin" ]
|
||||||
|
readme = "README.md"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "secp256k1"
|
name = "secp256k1"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies.rust-crypto]
|
|
||||||
git = "https://github.com/DaGenix/rust-crypto.git"
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rand = "*"
|
rand = "0.3"
|
||||||
libc = "*"
|
rust-crypto = "0.2"
|
||||||
rustc-serialize = "*"
|
libc = "0.1"
|
||||||
serde = "*"
|
rustc-serialize = "0.3"
|
||||||
|
serde = "0.3"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue