36 lines
859 B
TOML
36 lines
859 B
TOML
[package]
|
|
name = "rtx-multimodal"
|
|
version = "1.0.0"
|
|
edition.workspace = true
|
|
rust-version = "1.92"
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
rtx-tensor = { path = "../../core/rtx-tensor" }
|
|
rtx-runtime = { path = "../../core/rtx-runtime" }
|
|
rtx-polygraph = { path = "../../specialized/rtx-polygraph" }
|
|
rtx-transformers = { path = "../../training/rtx-transformers" }
|
|
rtx-flash-attention = { path = "../../training/rtx-flash-attention" }
|
|
image = "0.24"
|
|
hound = "3.5"
|
|
anyhow.workspace = true
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
tracing.workspace = true
|
|
tokio.workspace = true
|
|
futures.workspace = true
|
|
rand.workspace = true
|
|
approx = "0.5"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
|
|
[[bench]]
|
|
name = "multimodal_bench"
|
|
harness = false
|
|
|
|
[lints]
|
|
workspace = true
|