mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-08 21:00:40 +00:00
Merge remote-tracking branch 'hdevalence/feature/katex-docsrs' into develop
This commit is contained in:
commit
59f6175b4c
2 changed files with 3 additions and 52 deletions
55
Cargo.toml
55
Cargo.toml
|
|
@ -15,6 +15,9 @@ exclude = [
|
||||||
".gitignore"
|
".gitignore"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[package.metadata.docs.rs]
|
||||||
|
rustdoc-args = ["--html-in-header rustdoc-include-katex-header.html"]
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
travis-ci = { repository = "isislovecruft/curve25519-dalek", branch = "master"}
|
travis-ci = { repository = "isislovecruft/curve25519-dalek", branch = "master"}
|
||||||
|
|
||||||
|
|
@ -56,55 +59,3 @@ yolocrypto = []
|
||||||
bench = []
|
bench = []
|
||||||
# Radix-51 arithmetic using u128
|
# Radix-51 arithmetic using u128
|
||||||
radix_51 = []
|
radix_51 = []
|
||||||
|
|
||||||
# The development profile, used for `cargo build`.
|
|
||||||
[profile.dev]
|
|
||||||
opt-level = 0 # controls the `--opt-level` the compiler builds with
|
|
||||||
debug = true # controls whether the compiler passes `-g`
|
|
||||||
rpath = false # controls whether the compiler passes `-C rpath`
|
|
||||||
lto = false # controls `-C lto` for binaries and staticlibs
|
|
||||||
debug-assertions = true # controls whether debug assertions are enabled
|
|
||||||
codegen-units = 1 # controls whether the compiler passes `-C codegen-units`
|
|
||||||
# `codegen-units` is ignored when `lto = true`
|
|
||||||
panic = 'unwind' # panic strategy (`-C panic=...`), can also be 'abort'
|
|
||||||
|
|
||||||
# The release profile, used for `cargo build --release`.
|
|
||||||
[profile.release]
|
|
||||||
opt-level = 3
|
|
||||||
debug = false
|
|
||||||
rpath = false
|
|
||||||
lto = false
|
|
||||||
debug-assertions = false
|
|
||||||
codegen-units = 1
|
|
||||||
panic = 'unwind'
|
|
||||||
|
|
||||||
# The testing profile, used for `cargo test`.
|
|
||||||
[profile.test]
|
|
||||||
opt-level = 0
|
|
||||||
debug = true
|
|
||||||
rpath = false
|
|
||||||
lto = false
|
|
||||||
debug-assertions = true
|
|
||||||
codegen-units = 1
|
|
||||||
panic = 'unwind'
|
|
||||||
required-features = ['yolocrypto']
|
|
||||||
|
|
||||||
# The benchmarking profile, used for `cargo bench`.
|
|
||||||
[profile.bench]
|
|
||||||
opt-level = 3
|
|
||||||
debug = false
|
|
||||||
rpath = false
|
|
||||||
lto = false
|
|
||||||
debug-assertions = false
|
|
||||||
codegen-units = 1
|
|
||||||
panic = 'unwind'
|
|
||||||
|
|
||||||
# The documentation profile, used for `cargo doc`.
|
|
||||||
[profile.doc]
|
|
||||||
opt-level = 0
|
|
||||||
debug = true
|
|
||||||
rpath = false
|
|
||||||
lto = false
|
|
||||||
debug-assertions = true
|
|
||||||
codegen-units = 1
|
|
||||||
panic = 'unwind'
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue