Hi,
im working on a project where i have to use the newer ESP32Async/AsyncTCP(https://github.com/ESP32Async/AsyncTCP).
This introduces build errors - because of the same lib installed twice (me-no-dev/AsyncTCP requirement in the library.json)
|
"dependencies": [ |
|
{ |
|
"owner": "me-no-dev", |
|
"name": "AsyncTCP", |
|
"version": "*", |
|
"platforms": ["espressif32"] |
|
}, |
found my solution by replacing the part in library.json -
maybe you could look into if a swap to the new fork may be an option ?
{
"owner": "ESP32Async",
"name": "AsyncTCP",
"version": "*",
"platforms": ["espressif32"]
},
thanks.
Hi,
im working on a project where i have to use the newer ESP32Async/AsyncTCP(https://github.com/ESP32Async/AsyncTCP).
This introduces build errors - because of the same lib installed twice (me-no-dev/AsyncTCP requirement in the library.json)
eModbus/library.json
Lines 26 to 32 in 331b9e6
found my solution by replacing the part in library.json -
maybe you could look into if a swap to the new fork may be an option ?
thanks.