16 lines
462 B
TOML
16 lines
462 B
TOML
[package]
|
|
name = "dev-dtos"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Franklin E. Blanco"]
|
|
description = "League-svc types and dtos "
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/franklinblanco/user-dtos.git"
|
|
|
|
[lib]
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
chrono = { version = "0.4", features = [ "serde" ] } |