Rename example mbedtls-req -> mbedtls

This commit is contained in:
Martin Algesten
2022-01-31 09:41:39 +01:00
parent d75643b478
commit 5dbaa9a256
3 changed files with 3 additions and 11 deletions

View File

@@ -45,21 +45,13 @@ rustls-native-certs = { version = "0.6", optional = true }
native-tls = { version = "0.2", optional = true }
flate2 = { version = "1.0.22", optional = true }
brotli-decompressor = { version = "2.3.2", optional = true }
mbedtls = { version = "0.8.1", optional = true }
[dev-dependencies]
serde = { version = "1", features = ["derive"] }
env_logger = "0.9"
rustls = { version = "0.20", features = ["dangerous_configuration"] }
rustls-pemfile = { version = "0.2" }
[[example]]
name = "smoke-test"
[[example]]
name = "mbedtls-req"
required-features = ["mbedtls"]
mbedtls = { version = "0.8.1" }
[[example]]
name = "cureq"

View File

@@ -68,7 +68,7 @@ fn main() -> Result<()> {
/*
* Local Variables:
* compile-command: "cargo build --example mbedtls-req --features=\"mbedtls\""
* compile-command: "cargo build --example mbedtls-req"
* mode: rust
* End:
*/

View File

@@ -107,7 +107,7 @@ impl io::Write for MbedTlsStream {
/*
* Local Variables:
* compile-command: "cd ../.. && cargo build --example mbedtls-req --features=\"mbedtls\""
* compile-command: "cd ../.. && cargo build --example mbedtls-req"
* mode: rust
* End:
*/