[package] name = "yahoo-finance-symbols" version = "0.1.4" edition = "2021" readme = "../README.md" description = "A Library for scraping all Ticker Symbols from Yahoo Finance" repository = "https://github.com/Nnamdi-sys/yahoo-finance-symbols" license = "MIT" exclude = ["symbols.db"] [dependencies] rusqlite = { version = "0.31.0", features = ["bundled"] } reqwest = { version = "0.12.4", features = ["json"] } tokio = { version = "1.32.0", features = ["full"] } serde = { version = "1.0.183", features = ["derive"] } polars = { version = "0.41.3", default-features = false, features = ["lazy", "rows", "fmt_no_tty"] } r2d2 = "0.8.10" r2d2_sqlite = "0.24.0" lazy_static = "1.4.0" scraper = "0.19.0" html-escape = "0.2.13" indicatif = "0.17.8" futures = "0.3.30"