[package] name = "tradaf" version = "0.1.0" authors = ["Zykino "] description = "Tranduit Data Format: Translate serialized data from one format to another." license = "GPL-3.0-or-later" keywords = ["conversion", "serialization", "serde"] categories = ["command-line-utilities"] readme = "README.md" repository = "https://zykino.net/gitea/zykino/Tradaf" documentation = "https://docs.rs/tradaf" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # TODO: handle errors (or pass them to main) instead of unwrapping #anyhow = "1.0.64" clap = { version = "3.2.20", features = ["derive"] } # TODO: May be used to "deserialize any" if I understood correctly. (Or maybe `typetag`?) But I did not achieved to make it work with serde-transcode #erased-serde = "0.3.23" serde = "1.0" serde-transcode = "1.1.1" # Data types we support # Should tend to be equal to the official list of data formats supported by serde: https://serde.rs/#data-formats #bson = "2.3" #ciborium = "0.2" serde_json = "1.0" json5 = "0.4" serde-pickle = "1.0" serde_qs = "0.10" ron = "0.8" #toml = "0.5" serde_yaml = "0.9"