picoring 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. picoring-0.3.0/.gitattributes +2 -0
  2. picoring-0.3.0/.gitignore +24 -0
  3. picoring-0.3.0/Cargo.lock +838 -0
  4. picoring-0.3.0/Cargo.toml +41 -0
  5. picoring-0.3.0/LICENSE +21 -0
  6. picoring-0.3.0/PKG-INFO +9 -0
  7. picoring-0.3.0/README.md +341 -0
  8. picoring-0.3.0/benches/ring_bench.rs +121 -0
  9. picoring-0.3.0/pyproject.toml +17 -0
  10. picoring-0.3.0/python_tests/README.md +100 -0
  11. picoring-0.3.0/python_tests/benchmark.py +66 -0
  12. picoring-0.3.0/python_tests/comparison_bench.py +127 -0
  13. picoring-0.3.0/python_tests/test_collections.py +35 -0
  14. picoring-0.3.0/python_tests/test_suite.py +31 -0
  15. picoring-0.3.0/scenarios/audio_processing/README.md +10 -0
  16. picoring-0.3.0/scenarios/audio_processing/main.rs +31 -0
  17. picoring-0.3.0/scenarios/log_analysis/README.md +7 -0
  18. picoring-0.3.0/scenarios/log_analysis/main.rs +45 -0
  19. picoring-0.3.0/scenarios/message_passing/README.md +10 -0
  20. picoring-0.3.0/scenarios/message_passing/main.rs +36 -0
  21. picoring-0.3.0/scenarios/network_stream/README.md +9 -0
  22. picoring-0.3.0/scenarios/network_stream/main.rs +28 -0
  23. picoring-0.3.0/src/buffer.rs +60 -0
  24. picoring-0.3.0/src/collections/byte_stream.rs +156 -0
  25. picoring-0.3.0/src/collections/list.rs +269 -0
  26. picoring-0.3.0/src/collections/mod.rs +8 -0
  27. picoring-0.3.0/src/collections/queue.rs +150 -0
  28. picoring-0.3.0/src/lib.rs +40 -0
  29. picoring-0.3.0/src/python.rs +246 -0
  30. picoring-0.3.0/src/ring.rs +233 -0
  31. picoring-0.3.0/src/system/mod.rs +26 -0
  32. picoring-0.3.0/src/system/unix.rs +100 -0
  33. picoring-0.3.0/src/system/windows.rs +169 -0
  34. picoring-0.3.0/tests/benchmarks.rs +204 -0
  35. picoring-0.3.0/tests/collections_bench.rs +124 -0
  36. picoring-0.3.0/tests/ergonomics_bench.rs +133 -0
  37. picoring-0.3.0/tests/full_scale_analysis.rs +287 -0
  38. picoring-0.3.0/tests/integration.rs +98 -0
  39. picoring-0.3.0/tests/stress_test.rs +72 -0
  40. picoring-0.3.0/tests/throughput_analysis.rs +107 -0
@@ -0,0 +1,2 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
@@ -0,0 +1,24 @@
1
+ # Generated by Cargo
2
+ # will have compiled files and executables
3
+ debug/
4
+ target/
5
+
6
+ # These are backup files generated by rustfmt
7
+ **/*.rs.bk
8
+
9
+ # MSVC Windows builds of rustc generate these, which store debugging information
10
+ *.pdb
11
+
12
+ # RustRover
13
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
14
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
15
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
16
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
17
+ #.idea/
18
+
19
+ # Added by cargo
20
+
21
+ /target
22
+
23
+ .venv
24
+ .pypirc