You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
allow the existence of a `CMakeLists.txt` file at root,
for easier integration with other projects expecting this file at root.
Existing integration point, within `build/cmake/`, still works as expected.
@@ -198,10 +205,11 @@ If the version is out of date, please [create an issue or pull request](https://
198
205
### Visual Studio (Windows)
199
206
200
207
Going into `build` directory, you will find additional possibilities:
201
-
- Projects for Visual Studio 2005, 2008 and 2010.
208
+
- Projects for Visual Studio 2008 and 2010.
202
209
+ VS2010 project is compatible with VS2012, VS2013, VS2015 and VS2017.
203
210
- Automated build scripts for Visual compiler by [@KrzysFR](https://github.com/KrzysFR), in `build/VS_scripts`,
204
211
which will build `zstd` cli and `libzstd` library without any need to open Visual Studio solution.
212
+
- It is now recommended to generate Visual Studio solutions from `cmake`
205
213
206
214
### Buck
207
215
@@ -210,7 +218,7 @@ The output binary will be in `buck-out/gen/programs/`.
210
218
211
219
### Bazel
212
220
213
-
You easily can integrate zstd into your Bazel project by using the module hosted on the [Bazel Central Repository](https://registry.bazel.build/modules/zstd).
221
+
You can integrate zstd into your Bazel project by using the module hosted on the [Bazel Central Repository](https://registry.bazel.build/modules/zstd).
214
222
215
223
## Testing
216
224
@@ -221,9 +229,9 @@ For information on CI testing, please refer to `TESTING.md`.
221
229
222
230
## Status
223
231
224
-
Zstandard is currently deployed within Facebook and many other large cloud infrastructures.
225
-
It is run continuously to compress large amounts of data in multiple formats and use cases.
226
-
Zstandard is considered safe for production environments.
232
+
Zstandard is deployed within Meta and many other large cloud infrastructures,
233
+
to compress humongous amounts of data in various formats and use cases.
234
+
It is also continuously fuzzed for security issues by Google's [oss-fuzz](https://github.com/google/oss-fuzz/tree/master/projects/zstd) program.
227
235
228
236
## License
229
237
@@ -232,6 +240,5 @@ Zstandard is dual-licensed under [BSD](LICENSE) OR [GPLv2](COPYING).
232
240
## Contributing
233
241
234
242
The `dev` branch is the one where all contributions are merged before reaching `release`.
235
-
If you plan to propose a patch, please commit into the `dev` branch, or its own feature branch.
236
243
Direct commit to `release` are not permitted.
237
244
For more information, please read [CONTRIBUTING](CONTRIBUTING.md).
0 commit comments