38 lines
881 B
TOML
38 lines
881 B
TOML
[package]
|
|
name = "rtx-digital-twin-demo"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
rust-version = "1.92"
|
|
description = "Medical Digital Twin demo for RustyTorch++"
|
|
authors = ["RustyTorch Team"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/rustytorch/rustytorch"
|
|
|
|
[dependencies]
|
|
rtx-digital-twin-shared = { workspace = true }
|
|
rtx-digital-twin = { workspace = true }
|
|
rtx-tensor = { workspace = true }
|
|
rtx-backend = { workspace = true }
|
|
rtx-backend-cpu = { workspace = true }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
dirs = "5"
|
|
tracing = "0.1"
|
|
tokio = { version = "1.0", features = ["sync", "rt", "rt-multi-thread", "time", "macros"] }
|
|
rand = "0.8"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1.4"
|
|
approx = "0.5"
|
|
tempfile = "3.10"
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid"
|
|
missing_docs = "warn"
|
|
|
|
[lints.clippy]
|
|
all = "warn"
|
|
pedantic = "warn"
|