summaryrefslogtreecommitdiff
path: root/vendor/parakeet-rs/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/parakeet-rs/Cargo.toml.orig')
-rw-r--r--vendor/parakeet-rs/Cargo.toml.orig54
1 files changed, 54 insertions, 0 deletions
diff --git a/vendor/parakeet-rs/Cargo.toml.orig b/vendor/parakeet-rs/Cargo.toml.orig
new file mode 100644
index 0000000..4d91e18
--- /dev/null
+++ b/vendor/parakeet-rs/Cargo.toml.orig
@@ -0,0 +1,54 @@
+[package]
+name = "parakeet-rs"
+version = "0.2.5"
+edition = "2021"
+authors = ["altunenes"]
+description = "Fast ASR & Speaker Diarization with NVIDIA Parakeet via ONNX"
+repository = "https://github.com/altunenes/parakeet-rs"
+license = "MIT OR Apache-2.0"
+keywords = ["speech-recognition", "asr", "parakeet", "onnx", "nvidia"]
+categories = ["multimedia::audio", "science"]
+
+[lib]
+name = "parakeet_rs"
+path = "src/lib.rs"
+
+[[example]]
+name = "transcribe"
+path = "examples/transcribe.rs"
+
+[[example]]
+name = "diarization"
+path = "examples/diarization.rs"
+
+[[example]]
+name = "raw"
+path = "examples/raw.rs"
+
+[[example]]
+name = "streaming"
+path = "examples/streaming.rs"
+
+[dependencies]
+ort = { version = "2.0.0-rc.10", features = ["download-binaries"] }
+hound = "3.5"
+eyre = "0.6"
+ndarray = "0.16"
+tokenizers = "0.20"
+serde = { version = "1.0", features = ["derive"] }
+serde_json = "1.0"
+rustfft = "6.4"
+
+[dev-dependencies]
+
+[features]
+default = ["cpu"]
+cpu = []
+cuda = ["ort/cuda"]
+tensorrt = ["ort/tensorrt"]
+coreml = ["ort/coreml"]
+directml = ["ort/directml"]
+rocm = ["ort/rocm"]
+openvino = ["ort/openvino"]
+webgpu = ["ort/webgpu"]
+sortformer = [] \ No newline at end of file