├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── error.rs ├── jsgf.rs ├── lib.rs ├── nbest.rs └── search.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriomant/pocketsphinx-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriomant/pocketsphinx-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriomant/pocketsphinx-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriomant/pocketsphinx-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/jsgf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriomant/pocketsphinx-rs/HEAD/src/jsgf.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriomant/pocketsphinx-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/nbest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriomant/pocketsphinx-rs/HEAD/src/nbest.rs -------------------------------------------------------------------------------- /src/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriomant/pocketsphinx-rs/HEAD/src/search.rs --------------------------------------------------------------------------------