Add some eps (#108)

This commit is contained in:
Jamjamjon
2025-06-05 16:29:29 +08:00
committed by GitHub
parent cb587cd57c
commit 0e8d4f832a
41 changed files with 1360 additions and 159 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "usls"
edition = "2021"
version = "0.1.0-beta.3"
version = "0.1.0-beta.4"
rust-version = "1.82"
description = "A Rust library integrated with ONNXRuntime, providing a collection of ML models."
repository = "https://github.com/jamjamjon/usls"
@ -45,6 +45,7 @@ ort = { version = "=2.0.0-rc.10", default-features = false, optional = true, fea
] }
tokenizers = { version = "0.21.1" }
paste = "1.0.15"
base64ct = "=1.7.3"
[build-dependencies]
prost-build = "0.13.5"
@ -53,11 +54,27 @@ prost-build = "0.13.5"
argh = "0.1.13"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "chrono"] }
[features]
default = [ "ort-download-binaries" ]
video = [ "dep:video-rs" ]
ort-download-binaries = [ "ort", "ort/download-binaries" ]
ort-load-dynamic = [ "ort", "ort/load-dynamic" ]
cuda = [ "ort/cuda" ]
trt = [ "ort/tensorrt" ]
tensorrt = [ "ort/tensorrt" ]
coreml = [ "ort/coreml" ]
openvino = [ "ort/openvino" ]
onednn = [ "ort/onednn" ]
directml = [ "ort/directml" ]
xnnpack = [ "ort/xnnpack" ]
cann = [ "ort/cann" ]
rknpu = [ "ort/rknpu" ]
acl = [ "ort/acl" ]
rocm = [ "ort/rocm" ]
nnapi = [ "ort/nnapi" ]
armnn = [ "ort/armnn" ]
tvm = [ "ort/tvm" ]
qnn = [ "ort/qnn" ]
migraphx = [ "ort/migraphx" ]
vitis = [ "ort/vitis" ]
azure = [ "ort/azure" ]