diff --git a/components_esp32c3.lock b/components_esp32c3.lock new file mode 100644 index 00000000000..418d9c5b21f --- /dev/null +++ b/components_esp32c3.lock @@ -0,0 +1,20 @@ +dependencies: + espressif/mdns: + component_hash: d8ae7aa491ff97aea1d00d514a1de42cdbaaf1bce10df183968fa5594b904de7 + dependencies: + - name: idf + require: private + version: '>=5.0' + source: + registry_url: https://components.espressif.com/ + type: service + version: 1.2.5 + idf: + source: + type: idf + version: 5.3.1 +direct_dependencies: +- espressif/mdns +manifest_hash: c3b94c87f4e7f6400185dd295864ac2a11d6dea38982a89ee366397f983b68f6 +target: esp32c3 +version: 2.0.0 diff --git a/src/http/client.rs b/src/http/client.rs index 512b316a3bc..8f4e53e219f 100644 --- a/src/http/client.rs +++ b/src/http/client.rs @@ -112,6 +112,7 @@ impl EspHttpConnection { pub fn new(configuration: &Configuration) -> Result { let event_handler = Box::new(None); + #[allow(clippy::manual_c_str_literals)] let mut native_config = esp_http_client_config_t { // The ESP-IDF HTTP client is really picky on being initialized with a valid URL // So we set something here, which will be changed later anyway, in the request() method diff --git a/src/nvs.rs b/src/nvs.rs index ec06f9f9e0e..67d44952226 100644 --- a/src/nvs.rs +++ b/src/nvs.rs @@ -71,6 +71,7 @@ impl Drop for NvsDefault { } impl NvsPartitionId for NvsDefault { + #[allow(clippy::manual_c_str_literals)] fn name(&self) -> &CStr { CStr::from_bytes_with_nul(b"\0").unwrap() }