Closed iyfedorov closed 1 month ago
Versions:
[dependencies]
log = { version = "0.4", default-features = false }
esp-idf-svc = "0.49.0"
esp-idf-sys = "=0.35.0"
anyhow = "=1.0.89"
embedded-svc = "=0.28.0"
shtcx = "=1.0.0"
toml-cfg = "=0.2.0"
Don't enable any esp_idf_
flag explicitly yourself. Enable the HTTPS server by following the ESP IDF documentation and putting the relevant CONFIG_
entries in your sdkconfig.defaults.
This would take care of everything, including the generation of the relevant Rust cfgs for you.
Hello! I tried make http server with tls by adding certs in configuration in my code
and enabled flag
esp_idf_esp_https_server_enable
in config.tomlrustflags ="--cfg espidf_time64 --cfg esp_idf_esp_https_server_enable"
but when i call
cargo build
i got next errors:What i do wrong? (simple http server was successfullty started up). Thx