# 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 = "denvars" version = "0.3.2" description = "Deserialize environment variables" readme = "README.md" keywords = [ "serde", "env", ] categories = [ "config", "no-std", "encoding", ] license = "MIT OR Apache-2.0" repository = "https://github.com/zakarumych/denvars" [[example]] name = "demo" required-features = [ "json", "std", ] [dependencies.base64] version = "0.21" features = ["alloc"] default-features = false [dependencies.serde] version = "1.0" features = ["alloc"] default-features = false [dependencies.serde_json] version = "1.0" features = ["alloc"] optional = true default-features = false [dependencies.toml] version = "0.8" optional = true [dev-dependencies.serde_derive] version = "1.0" [features] default = ["std"] json = [ "dep:serde_json", "std", ] std = [ "serde/std", "serde_json?/std", "base64/std", ] toml = [ "dep:toml", "std", ]