[package]
edition = "2021"
name = "anylist_rs"
version = "0.4.0"
authors = ["Phil Denhoff <phil@denhoff.ca>"]
build = "build.rs"
exclude = [
"src/snapshots/",
"tools/",
"docs/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interact with the grocery list management app AnyList's undocumented API. Unofficial."
homepage = "https://github.com/phildenhoff/anylist_rs"
readme = "README.md"
keywords = [
"anylist",
"grocery",
"shopping",
"api",
"list",
]
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/phildenhoff/anylist_rs"
[features]
default = ["native-tls"]
native-tls = [
"reqwest/native-tls",
"tokio-tungstenite/connect",
"tokio-tungstenite/native-tls",
]
rustls-tls = [
"reqwest/rustls-tls",
"tokio-tungstenite/connect",
"tokio-tungstenite/rustls-tls-native-roots",
]
[lib]
name = "anylist_rs"
crate-type = [
"lib",
"cdylib",
]
path = "src/lib.rs"
bench = false
[dependencies.chrono]
version = "0.4.42"
features = ["serde"]
[dependencies.futures-util]
version = "0.3"
[dependencies.prost]
version = "0.12"
[dependencies.regex]
version = "1.0"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"multipart",
]
default-features = false
[dependencies.serde]
version = "1.0"
[dependencies.serde_derive]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.21"
default-features = false
[dependencies.urlencoding]
version = "2.1"
[dependencies.uuid]
version = "1.18.1"
features = [
"rng-getrandom",
"v4",
]
[dev-dependencies.hex]
version = "0.4"
[dev-dependencies.insta]
version = "1.40"
[build-dependencies.prost-build]
version = "0.11.0"