# 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" rust-version = "1.65.0" name = "utc-dt" version = "0.3.0" authors = ["Reece Kibble "] build = false exclude = [".git*"] autobins = false autoexamples = false autotests = false autobenches = false description = "Simple, fast and small UTC date, timestamp and datetime library for Rust." documentation = "https://docs.rs/utc-dt" readme = "README.md" keywords = [ "time", "datetime", "date", "utc", "epoch", ] categories = [ "date-and-time", "no-std", "parsing", ] license = "MIT OR Apache-2.0" repository = "https://github.com/uniciant/utc-datetime" [lib] name = "utc_dt" path = "src/lib.rs" [[test]] name = "date" path = "tests/date.rs" [[test]] name = "datetime" path = "tests/datetime.rs" [[test]] name = "error" path = "tests/error.rs" [[test]] name = "time" path = "tests/time.rs" [dependencies.serde] version = "1.0" features = ["derive"] optional = true default-features = false [dev-dependencies.serde_json] version = "1.0" [features] alloc = ["serde/alloc"] default = ["std"] nightly = [] serde = ["dep:serde"] std = [ "alloc", "serde/std", ]