[package] name = "ncaa_data_rs" description = "Tools for fetching and handling NCAA data for multiple sports." version = "0.2.1" edition = "2021" resolver = "2" authors = ["Evan Flynn"] homepage = "https://gitlab.com/flynneva/ncaa-data-rs.git" documentation = "https://gitlab.com/flynneva/ncaa-data-rs.git" readme = "README.md" repository = "https://gitlab.com/flynneva/ncaa-data-rs.git" license-file = "LICENSE" keywords = [ "ncaa", "data", "sports", "live", "college", ] # [features] # default = ["pg13"] # pg11 = ["pgx/pg11", "pgx-tests/pg11" ] # pg12 = ["pgx/pg12", "pgx-tests/pg12" ] # pg13 = ["pgx/pg13", "pgx-tests/pg13" ] # pg14 = ["pgx/pg14", "pgx-tests/pg14" ] # pg_test = [] [features] proxy = [] [dependencies] reqwest = { version = "0.11", features = ["json"] } serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0" } dotenv = "0.15.0" chrono = "0.4" maplit = "1.0.2" clap = { version = "3.2.20", features = ["derive"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tokio = { version = "1.2", features = ["full"] } # pgx = { version = "0.7.4", default-features = true} # pgx-tests = { version = "0.4.5" } [profile.dev] panic = "unwind" lto = "thin" [profile.release] panic = "unwind" opt-level = 3 lto = "fat" codegen-units = 1