-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (30 loc) · 1.1 KB
/
Cargo.toml
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
27
28
29
30
31
32
33
34
[package]
name = "notionrs"
description = "A Notion API client that provides type-safe request serialization and response deserialization"
version = "1.0.0-alpha.27"
edition = "2021"
authors = ["Chomolungma Shirayuki"]
repository = "https://github.com/46ki75/notionrs"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/notionrs"
categories = ["web-programming::http-client"]
keywords = ["notion", "notion-api"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.39", features = ["serde"] }
reqwest = { version = "0.12.12", default-features = false }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
thiserror = "2.0.9"
[dev-dependencies]
tokio = { version = "1.42.0", features = ["full"] }
dotenvy = "0.15.0"
serial_test = "3.2.0"
[features]
default = ["rustls-tls", "gzip"]
rustls-tls = ["reqwest/rustls-tls"]
native-tls = ["reqwest/default-tls", "reqwest/native-tls"]
native-tls-alpn = ["reqwest/native-tls-alpn"]
gzip = ["reqwest/gzip"]
brotli = ["reqwest/brotli"]