[package]
edition = "2024"
rust-version = "1.88"
name = "one-saves-cli"
version = "0.1.0"
authors = ["Hans Larsen <hans@larsen.online>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The 1saves command-line tool: convert emulator saves and memory cards to and from the Universal Saves Format"
homepage = "https://docs.1retro.com/specifications/universal-saves-format/"
readme = "README.md"
keywords = [
"1saves",
"emulation",
"retro",
"savegame",
"cbor",
]
categories = [
"encoding",
"filesystem",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/one-retro/one-saves"
[[bin]]
name = "1saves"
path = "src/main.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.one-saves]
version = "0.1.0"
[dependencies.one-saves-convert]
version = "0.1.0"
[dependencies.one-saves-registry]
version = "0.1.0"
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"