[[bin]]
name = "ncaa_data_rs"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
features = ["derive"]
version = "3.2.20"
[dependencies.dotenv]
version = "0.15.0"
[dependencies.maplit]
version = "1.0.2"
[dependencies.reqwest]
features = ["json"]
version = "0.12"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[lib]
name = "ncaa_data_rs"
path = "src/lib.rs"
[package]
authors = ["Evan Flynn"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Tools for fetching and handling NCAA data for multiple sports."
documentation = "https://gitlab.com/flynneva/ncaa-data-rs.git"
edition = "2021"
homepage = "https://gitlab.com/flynneva/ncaa-data-rs.git"
keywords = ["ncaa", "data", "sports", "live", "college"]
license-file = "LICENSE"
name = "ncaa_data_rs"
readme = "README.md"
repository = "https://gitlab.com/flynneva/ncaa-data-rs.git"
resolver = "2"
version = "0.2.4"
[profile.dev]
lto = "thin"
panic = "unwind"
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3
panic = "unwind"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
features = ["full"]
version = "1.2"