Change documentation link, increment version so I can republish
This commit is contained in:
parent
6d4f64f901
commit
c03d5ab819
|
@ -1,13 +1,12 @@
|
||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "secp256k1"
|
name = "secp256k1"
|
||||||
version = "0.8.2"
|
version = "0.8.3"
|
||||||
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"
|
license = "CC0-1.0"
|
||||||
homepage = "https://github.com/apoelstra/rust-secp256k1/"
|
homepage = "https://github.com/apoelstra/rust-secp256k1/"
|
||||||
repository = "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."
|
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" ]
|
keywords = [ "crypto", "ECDSA", "secp256k1", "libsecp256k1", "bitcoin" ]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -11,5 +11,5 @@ a C library by Peter Wuille for producing ECDSA signatures using the SECG curve
|
||||||
* implements many unit tests, adding to those already present in `libsecp256k1`
|
* implements many unit tests, adding to those already present in `libsecp256k1`
|
||||||
* makes no allocations (except in unit tests) for efficiency and use in freestanding implementations
|
* makes no allocations (except in unit tests) for efficiency and use in freestanding implementations
|
||||||
|
|
||||||
[Full documentation](https://www.wpsoftware.net/rustdoc/secp256k1/)
|
[Full documentation](https://docs.rs/secp256k1/0.8.3/secp256k1/)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue