[package] name = "hypersave" version = "0.1.0" authors = ["Matthias Kaak "] edition = "2021" description = "Adding a safe feature to hyperrogue" license = "GPL-3.0-or-later" repository = "https://codeberg.org/zvavybir/hyperrogue" documentation = "https://docs.rs/hyperrogue" homepage = "https://zvavybir.codeberg.page/hyperrogue/" readme = "README.md" keywords = ["cli", "game", "text"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "save" path = "src/save.rs" [[bin]] name = "restore" path = "src/restore.rs" [dependencies] anyhow = { version = "1.0.69", features = ["backtrace"] } clap = { version = "4.1.6", features = ["cargo", "derive"] } home = "0.5.4"