-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 817 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (24 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "algolia-recommend-rs"
authors = ["Raed667"]
version = "0.0.5"
edition = "2021"
license = "MIT"
description = """
Async Rust client for Algolia Recommend API (unofficial)
"""
repository = "https://github.com/raed667/algolia-recommend-rs"
documentation = "https://docs.rs/algolia-recommend-rs"
homepage = "https://github.com/raed667/algolia-recommend-rs"
keywords = ["algolia", "recommend", "search", "client"]
include = ["src/", "LICENSE", "README.md"]
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
[dev-dependencies]
dotenv = "0.15.0"
pretty_assertions = "1.4.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
httpmock = "0.8"