18 lines
628 B
TOML
18 lines
628 B
TOML
[package]
|
|
name = "google-photoslibrary1"
|
|
version = "0.1.0-20200203"
|
|
authors = ["Glenn Griffin <ggriffiniii@gmail.com"]
|
|
edition = "2018"
|
|
# for now, let's not even accidentally publish these
|
|
publish = false
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
reqwest = { version = "0.9", default-features = false, features = ['rustls-tls'] }
|
|
google_field_selector = { git = "https://github.com/google-apis-rs/generator" }
|
|
google_api_auth = { git = "https://github.com/google-apis-rs/generator" }
|
|
mime = "0.3"
|
|
textnonce = "0.6"
|
|
percent-encoding = "2" |