Cargo.toml (712B)
1 [package] 2 name = "radroots_runtime_manager" 3 publish = ["crates-io"] 4 version = "0.1.0-alpha.2" 5 edition.workspace = true 6 authors = ["Tyson Lupul <tyson@radroots.org>"] 7 rust-version.workspace = true 8 license.workspace = true 9 description = "Managed runtime lifecycle, registry, and inspection helpers" 10 repository.workspace = true 11 homepage.workspace = true 12 documentation = "https://docs.rs/radroots_runtime_manager" 13 readme = "README" 14 15 [dependencies] 16 flate2 = { workspace = true } 17 radroots_runtime_paths = { workspace = true } 18 serde = { workspace = true, features = ["derive"] } 19 tar = { workspace = true } 20 thiserror = { workspace = true } 21 toml = { workspace = true } 22 23 [dev-dependencies] 24 tempfile = { workspace = true }