[package] name = "gcs-reader" version = "0.1.5" edition = "2021" description = "Read + Seek for Google Cloud Storage" license = "Apache-2.0" repository = "https://github.com/leifu1128/gcs-reader" exclude = [ "tests/*", "rustfmt.toml", ".gitignore", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] color-eyre = "0.6.2" thiserror = "1.0.48" reqwest = { version = "0.11.20", features = ["json", "serde_json", "blocking"] } serde_json = "1.0.107" gcp_auth = "0.9.0" tokio = "1.32.0" bytes = "1.5.0" [target.'cfg(target_os = "linux")'.dependencies] openssl = { version = "0.10.57", features = ["vendored"] } [dev-dependencies] dotenv = "0.15.0"