Remove strict feature from Cargo toml.

See bdd4ff7b14
This commit is contained in:
jcamiel 2023-09-29 13:44:57 +02:00 committed by hurl-bot
parent 2867cbd19d
commit cf5d404fa3
No known key found for this signature in database
GPG Key ID: 1283A2B4A0DCAF8D
3 changed files with 1 additions and 12 deletions

View File

@ -2,7 +2,5 @@ Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
write-host -foregroundcolor Cyan "----- unit tests -----"
# run test units
cargo test --release --features strict --tests
cargo test --release --tests
if ($LASTEXITCODE) { Throw }

View File

@ -9,11 +9,6 @@ documentation = "https://hurl.dev"
homepage = "https://hurl.dev"
repository = "https://github.com/Orange-OpenSource/hurl"
[features]
# Treat warnings as a build error.
strict = []
[dependencies]
float-cmp = "0.9.0"
libxml = "0.3.3"

View File

@ -9,10 +9,6 @@ documentation = "https://hurl.dev"
homepage = "https://hurl.dev"
repository = "https://github.com/Orange-OpenSource/hurl"
[features]
# Treat warnings as a build error.
strict = []
[dependencies]
base64 = "0.21.4"
clap = { version = "4.4.6", features = ["cargo", "wrap_help"] }