# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies # # If you believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "babelfish" version = "0.2.1" authors = ["Ivan Tham "] description = "Universal translater for encodings" readme = "README.md" keywords = ["translate", "convert", "format", "cbor2json"] categories = ["command-line-utilities", "encoding"] license = "MIT OR Apache-2.0" repository = "https://github.com/pickfire/babelfish" [[bin]] name = "cbor2json" required-features = ["cbor", "json"] [[bin]] name = "cbor2toml" required-features = ["cbor", "toml"] [[bin]] name = "cbor2yaml" required-features = ["cbor", "yaml"] [[bin]] name = "json2cbor" required-features = ["json", "cbor"] [[bin]] name = "json2toml" required-features = ["json", "toml"] [[bin]] name = "json2yaml" required-features = ["json", "yaml"] [[bin]] name = "toml2cbor" required-features = ["toml", "cbor"] [[bin]] name = "toml2json" required-features = ["toml", "json"] [[bin]] name = "toml2yaml" required-features = ["toml", "yaml"] [[bin]] name = "yaml2cbor" required-features = ["yaml", "cbor"] [[bin]] name = "yaml2json" required-features = ["yaml", "json"] [[bin]] name = "yaml2toml" required-features = ["yaml", "toml"] [dependencies.serde-transcode] version = "1.0" [dependencies.serde_cbor] version = "0.11" optional = true [dependencies.serde_json] version = "1.0" optional = true [dependencies.serde_toml] version = "0.5" optional = true package = "toml" [dependencies.serde_yaml] version = "0.8" optional = true [features] cbor = ["serde_cbor"] default = ["cbor", "json", "toml", "yaml"] json = ["serde_json"] toml = ["serde_toml"] yaml = ["serde_yaml"]