Skip to content

Commit 99cc850

Browse files
committed
rm rust from master docs temporary
Signed-off-by: Andrey Parfenov <[email protected]>
1 parent e5429d3 commit 99cc850

File tree

4 files changed

+2
-67
lines changed

4 files changed

+2
-67
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,6 @@ jobs:
172172
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
173173
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
174174
VERSION: ${{ github.event.inputs.version }}
175-
- name: Prepare Rust Package
176-
run: |
177-
cd $env:GITHUB_WORKSPACE\rust-package\brainflow
178-
(gc .\Cargo.toml).replace('0.0.0', $env:VERSION) | Out-File -encoding ASCII Cargo.toml
179-
env:
180-
VERSION: ${{ github.event.inputs.version }}
181175
# publish packages
182176
- name: Publish Packages
183177
if: github.event.inputs.publish == 'true'

docs/BuildBrainFlow.rst

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -86,21 +86,6 @@ Steps to setup Matlab binding for BrainFlow:
8686
- Add folders lib and inc to Matlab path
8787
- If you want to run Matlab scripts from folders different than brainflow/matlab-package/brainflow you need to add it to your Matlab path too
8888

89-
Rust
90-
----
91-
92-
You should build core module code first using instruction below after that build Rust package.
93-
94-
.. compound::
95-
96-
Commands to build Rust package ::
97-
98-
cd rust-package
99-
cd brainflow
100-
cargo build
101-
# for developers, if you want to regenerate binding add --features="generate_binding"
102-
103-
10489
Julia
10590
--------
10691

docs/Examples.rst

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -434,45 +434,6 @@ Julia EEG Metrics
434434
.. literalinclude:: ../julia-package/brainflow/test/eeg_metrics.jl
435435
:language: julia
436436

437-
Rust
438-
--------
439-
440-
Rust Get Data from a Board
441-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
442-
443-
.. literalinclude:: ../tests/rust/src/brainflow_get_data/main.rs
444-
:language: rust
445-
446-
Rust Markers
447-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
448-
449-
.. literalinclude:: ../tests/rust/src/markers/main.rs
450-
:language: rust
451-
452-
Rust Denoising
453-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
454-
455-
.. literalinclude:: ../tests/rust/src/denoising/main.rs
456-
:language: rust
457-
458-
Rust Downsampling
459-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
460-
461-
.. literalinclude:: ../tests/rust/src/downsampling/main.rs
462-
:language: rust
463-
464-
Rust Signal Filtering
465-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
466-
467-
.. literalinclude:: ../tests/rust/src/signal_filtering/main.rs
468-
:language: rust
469-
470-
Rust Transforms
471-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
472-
473-
.. literalinclude:: ../tests/rust/src/transforms/main.rs
474-
:language: rust
475-
476437
Notebooks
477438
------------
478439
.. toctree::

docs/UserAPI.rst

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -141,16 +141,11 @@ A few general rules to keep in mind:
141141
Julia API Reference
142142
---------------------
143143

144-
Julia binding calls C\C++ code as any other binding. Use Julia examples and API reference for other languaes as a starting point.
144+
Julia binding calls C/C++ code as any other binding. Use Julia examples and API reference for other languaes as a starting point.
145145

146146
Since Julia is not Object-Oriented language, there is no DataFilter class. BoardShim class exists but all BoardShim class methods were moved to BrainFlow package and you need to pass BoardShim object to them.
147147

148-
Like here:
148+
Example:
149149

150150
.. literalinclude:: ../julia-package/brainflow/test/serialization.jl
151151
:language: julia
152-
153-
Rust API Reference
154-
---------------------
155-
156-
Currently we don't have autogenerated API reference for Rust, please check API reference for other languages.

0 commit comments

Comments
 (0)