Azure / azure-storage-cpplite

Lite version of C++ Client Library for Microsoft Azure Storage
MIT License
25 stars 44 forks source link

[Survey] Boost dependency? #69

Open katmsft opened 4 years ago

katmsft commented 4 years ago

Hi all,

Currently there are two C++ libraries for Azure Storage Service, this repo manages one and another one is called azure-storage-cpp. Many of you has chosen this library because of the boost dependency in the other one, can you share the reasons why boost library is not acceptable in your scenario? This will be one of the key references when we consider the dependency stories moving both SDKs forward.

If you do not like to disclose your user scenario publicly, feel free to email kat@microsoft.com to provide your voice.

Best regards,

Tank

ryomatcu commented 4 years ago

Hi @katmsft,

In my case, I reduce the number of dependencies to prevent the inclusion of bugs due to external factors.

I think Boost is,

And, I'm based on Google's style guide. https://google.github.io/styleguide/cppguide.html#Boost

So, this library helps me a lot :)

Thank you.