fix(cargo.toml): bench=false (#172)

This commit is contained in:
Aaryamann Challani 2023-05-29 19:44:00 +05:30 committed by GitHub
parent b841e725a0
commit 72a3ce1770
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -3,10 +3,10 @@ name = "rln"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
bench = false
[lib] [lib]
crate-type = ["rlib", "staticlib"] crate-type = ["rlib", "staticlib"]
bench = false
# This flag disable cargo doctests, i.e. testing example code-snippets in documentation # This flag disable cargo doctests, i.e. testing example code-snippets in documentation
doctest = false doctest = false

View File

@ -3,6 +3,8 @@ name = "utils"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
[lib]
bench = false bench = false
[dependencies] [dependencies]