20 lines
536 B
TOML
20 lines
536 B
TOML
[package]
|
|
name = "league-types"
|
|
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/league-types.git"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
chrono = { version = "0.4", features = [ "serde" ] }
|
|
rust_decimal = "1.26"
|
|
|
|
err = { git = "https://github.com/franklinblanco/err.git" }
|
|
dev-dtos = { git = "https://github.com/franklinblanco/user-svc-dtos-rust.git" }
|