[package] name = "rtx-hemodynamics-server" version = "1.0.0" edition = "2024" rust-version = "1.92" description = "Server layer for RustyTorch++ hemodynamics demo" authors = ["RustyTorch Team"] license = "MIT OR Apache-2.0" repository = "https://github.com/rustytorch/rustytorch" [dependencies] # Demo crates - Hemodynamics rtx-hemodynamics-shared = { path = "../shared" } rtx-hemodynamics = { path = "../rtx-hemodynamics", default-features = false, features = ["cpu", "metal"] } # Demo crates - MRE Elastography mre-shared = { path = "../mre-shared" } rtx-mre = { path = "../rtx-mre", default-features = false, features = ["cpu", "metal"] } # Demo crates - Thermal Ablation Bioheat bioheat-shared = { path = "../bioheat-shared" } rtx-bioheat = { path = "../rtx-bioheat", default-features = false, features = ["cpu", "metal"] } # Demo crates - SlideScope Pathology slidescope-shared = { path = "../slidescope-shared" } rtx-slidescope = { path = "../rtx-slidescope", default-features = false, features = ["cpu", "metal"] } # External dependencies anyhow = "1.0" thiserror = "2" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1.0", features = ["full"] } tracing = "0.1" image = "0.25" lru = "0.12" uuid = { version = "1.11", features = ["v4"] } [dev-dependencies] tokio-test = "0.4" proptest = "1.4" tempfile = "3.14" [lints] workspace = true