19 lines
652 B
TOML
19 lines
652 B
TOML
[package]
|
|
name = "better_toml_datetime"
|
|
description = "Small helper crate for usage in the jobboerse crate containing some helpers for working with toml date, datetime and time structs"
|
|
keywords = ["toml", "date", "time"]
|
|
categories = ["date-and-time", "encoding"]
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
readme.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
toml = { workspace = true }
|
|
thiserror = { workspace = true }
|