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.
- picoring-0.3.0/.gitattributes +2 -0
- picoring-0.3.0/.gitignore +24 -0
- picoring-0.3.0/Cargo.lock +838 -0
- picoring-0.3.0/Cargo.toml +41 -0
- picoring-0.3.0/LICENSE +21 -0
- picoring-0.3.0/PKG-INFO +9 -0
- picoring-0.3.0/README.md +341 -0
- picoring-0.3.0/benches/ring_bench.rs +121 -0
- picoring-0.3.0/pyproject.toml +17 -0
- picoring-0.3.0/python_tests/README.md +100 -0
- picoring-0.3.0/python_tests/benchmark.py +66 -0
- picoring-0.3.0/python_tests/comparison_bench.py +127 -0
- picoring-0.3.0/python_tests/test_collections.py +35 -0
- picoring-0.3.0/python_tests/test_suite.py +31 -0
- picoring-0.3.0/scenarios/audio_processing/README.md +10 -0
- picoring-0.3.0/scenarios/audio_processing/main.rs +31 -0
- picoring-0.3.0/scenarios/log_analysis/README.md +7 -0
- picoring-0.3.0/scenarios/log_analysis/main.rs +45 -0
- picoring-0.3.0/scenarios/message_passing/README.md +10 -0
- picoring-0.3.0/scenarios/message_passing/main.rs +36 -0
- picoring-0.3.0/scenarios/network_stream/README.md +9 -0
- picoring-0.3.0/scenarios/network_stream/main.rs +28 -0
- picoring-0.3.0/src/buffer.rs +60 -0
- picoring-0.3.0/src/collections/byte_stream.rs +156 -0
- picoring-0.3.0/src/collections/list.rs +269 -0
- picoring-0.3.0/src/collections/mod.rs +8 -0
- picoring-0.3.0/src/collections/queue.rs +150 -0
- picoring-0.3.0/src/lib.rs +40 -0
- picoring-0.3.0/src/python.rs +246 -0
- picoring-0.3.0/src/ring.rs +233 -0
- picoring-0.3.0/src/system/mod.rs +26 -0
- picoring-0.3.0/src/system/unix.rs +100 -0
- picoring-0.3.0/src/system/windows.rs +169 -0
- picoring-0.3.0/tests/benchmarks.rs +204 -0
- picoring-0.3.0/tests/collections_bench.rs +124 -0
- picoring-0.3.0/tests/ergonomics_bench.rs +133 -0
- picoring-0.3.0/tests/full_scale_analysis.rs +287 -0
- picoring-0.3.0/tests/integration.rs +98 -0
- picoring-0.3.0/tests/stress_test.rs +72 -0
- picoring-0.3.0/tests/throughput_analysis.rs +107 -0
|
@@ -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
|