mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-08 21:00:40 +00:00
Merge pull request #479 from pinkforest/doc-fix-release-pre5
Fix docs.rs release pre.5
This commit is contained in:
commit
06186b8511
3 changed files with 4 additions and 4 deletions
|
|
@ -5,7 +5,7 @@ name = "curve25519-dalek"
|
||||||
# - update html_root_url
|
# - update html_root_url
|
||||||
# - update README if required by semver
|
# - update README if required by semver
|
||||||
# - if README was updated, also update module documentation in src/lib.rs
|
# - if README was updated, also update module documentation in src/lib.rs
|
||||||
version = "4.0.0-pre.4"
|
version = "4.0.0-pre.5"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56.1"
|
rust-version = "1.56.1"
|
||||||
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
|
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||||
|
|
@ -28,8 +28,8 @@ exclude = [
|
||||||
rustdoc-args = [
|
rustdoc-args = [
|
||||||
"--html-in-header", "docs/assets/rustdoc-include-katex-header.html",
|
"--html-in-header", "docs/assets/rustdoc-include-katex-header.html",
|
||||||
"--cfg", "docsrs",
|
"--cfg", "docsrs",
|
||||||
'--cfg=curve25519_dalek_backend="simd"',
|
|
||||||
]
|
]
|
||||||
|
rustc-args = ["--cfg", "curve25519_dalek_backend=\"simd\""]
|
||||||
features = ["serde", "rand_core", "digest"]
|
features = ["serde", "rand_core", "digest"]
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ curve25519-dalek = "3"
|
||||||
To use the latest prerelease (see changes [below](#breaking-changes-in-400)),
|
To use the latest prerelease (see changes [below](#breaking-changes-in-400)),
|
||||||
use the following line in your project's `Cargo.toml`:
|
use the following line in your project's `Cargo.toml`:
|
||||||
```toml
|
```toml
|
||||||
curve25519-dalek = "4.0.0-pre.4"
|
curve25519-dalek = "4.0.0-pre.5"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Feature Flags
|
## Feature Flags
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
#![doc(
|
#![doc(
|
||||||
html_logo_url = "https://cdn.jsdelivr.net/gh/dalek-cryptography/curve25519-dalek/docs/assets/dalek-logo-clear.png"
|
html_logo_url = "https://cdn.jsdelivr.net/gh/dalek-cryptography/curve25519-dalek/docs/assets/dalek-logo-clear.png"
|
||||||
)]
|
)]
|
||||||
#![doc(html_root_url = "https://docs.rs/curve25519-dalek/4.0.0-pre.2")]
|
#![doc(html_root_url = "https://docs.rs/curve25519-dalek/4.0.0-pre.5")]
|
||||||
#![doc = include_str!("../README.md")]
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
//------------------------------------------------------------------------
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue