# 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 are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "clauser" version = "0.1.0" authors = ["Ashley Rogers "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Library for parsing and deserializing Clausewitz files." readme = "README.md" keywords = [ "gamedev", "deserialization", "parsing", ] categories = [ "parser-implementations", "game-development", ] license = "MIT" repository = "https://github.com/azrogers/clauser" [lib] name = "clauser" path = "src/lib.rs" [[test]] name = "de" path = "tests/de.rs" [[test]] name = "tokenizer" path = "tests/tokenizer.rs" [[test]] name = "value" path = "tests/value.rs" [dependencies.clauser_macros] version = "0.1.0" optional = true [dependencies.pad] version = "0.1.6" [dependencies.serde] version = "1.0.203" features = [ "derive", "std", ] optional = true [dependencies.serde_path_to_error] version = "0.1.16" optional = true [dependencies.static_assertions] version = "1.1.0" [dependencies.zerocopy] version = "0.7.34" [dependencies.zerocopy-derive] version = "0.7.34" [dev-dependencies.trybuild] version = "1.0.96" [features] default = [ "serde", "macros", ] macros = [ "serde", "dep:clauser_macros", ] serde = [ "dep:serde", "dep:serde_path_to_error", ]