spelling: deactivate

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2023-09-28 13:36:46 -04:00 committed by jcamiel
parent 99b2c285f5
commit 740e288799
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC

View File

@ -1,10 +1,10 @@
# On platforms with musl, we desactivate static linking # On platforms with musl, we deactivate static linking
# with CRT: on Alpine for instance, we must compile Hurl with this flag # with CRT: on Alpine for instance, we must compile Hurl with this flag
# in order to produce a valid binary (mainly because of curl crate) # in order to produce a valid binary (mainly because of curl crate)
[target.'cfg(target_env = "musl")'] [target.'cfg(target_env = "musl")']
rustflags = ["-Ctarget-feature=-crt-static"] rustflags = ["-Ctarget-feature=-crt-static"]
# Desactivate static linking for `cargo test --doc` # Deactivate static linking for `cargo test --doc`
# Should be only activated for Alpine but I don't know how to set it... # Should be only activated for Alpine but I don't know how to set it...
[build] [build]
rustdocflags = ["-Ctarget-feature=-crt-static"] rustdocflags = ["-Ctarget-feature=-crt-static"]