summaryrefslogtreecommitdiff
path: root/parakeet-rs/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'parakeet-rs/Cargo.toml')
-rw-r--r--parakeet-rs/Cargo.toml97
1 files changed, 97 insertions, 0 deletions
diff --git a/parakeet-rs/Cargo.toml b/parakeet-rs/Cargo.toml
new file mode 100644
index 0000000..d3f83a6
--- /dev/null
+++ b/parakeet-rs/Cargo.toml
@@ -0,0 +1,97 @@
+# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
+#
+# When uploading crates to the registry Cargo will automatically
+# "normalize" Cargo.toml files for maximal compatibility
+# with all versions of Cargo and also rewrite `path` dependencies
+# to registry (e.g., crates.io) dependencies.
+#
+# If you are reading this file be aware that the original Cargo.toml
+# will likely look very different (and much more reasonable).
+# See Cargo.toml.orig for the original contents.
+
+[package]
+edition = "2021"
+name = "parakeet-rs"
+version = "0.2.5"
+authors = ["altunenes"]
+build = false
+autolib = false
+autobins = false
+autoexamples = false
+autotests = false
+autobenches = false
+description = "Fast ASR & Speaker Diarization with NVIDIA Parakeet via ONNX"
+readme = "README.md"
+keywords = [
+ "speech-recognition",
+ "asr",
+ "parakeet",
+ "onnx",
+ "nvidia",
+]
+categories = [
+ "multimedia::audio",
+ "science",
+]
+license = "MIT OR Apache-2.0"
+repository = "https://github.com/altunenes/parakeet-rs"
+
+[features]
+coreml = ["ort/coreml"]
+cpu = []
+cuda = ["ort/cuda"]
+default = ["cpu"]
+directml = ["ort/directml"]
+openvino = ["ort/openvino"]
+rocm = ["ort/rocm"]
+sortformer = []
+tensorrt = ["ort/tensorrt"]
+webgpu = ["ort/webgpu"]
+
+[lib]
+name = "parakeet_rs"
+path = "src/lib.rs"
+
+[[example]]
+name = "diarization"
+path = "examples/diarization.rs"
+
+[[example]]
+name = "raw"
+path = "examples/raw.rs"
+
+[[example]]
+name = "streaming"
+path = "examples/streaming.rs"
+
+[[example]]
+name = "transcribe"
+path = "examples/transcribe.rs"
+
+[dependencies.eyre]
+version = "0.6"
+
+[dependencies.hound]
+version = "3.5"
+
+[dependencies.ndarray]
+version = "0.16"
+
+[dependencies.ort]
+version = "2.0.0-rc.10"
+features = ["download-binaries"]
+
+[dependencies.rustfft]
+version = "6.4"
+
+[dependencies.serde]
+version = "1.0"
+features = ["derive"]
+
+[dependencies.serde_json]
+version = "1.0"
+
+[dependencies.tokenizers]
+version = "0.20"
+
+[dev-dependencies]