2023-01-29 13:15:41 +01:00
|
|
|
[package]
|
|
|
|
name = "notion-client"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2023-07-03 15:07:55 +02:00
|
|
|
[features]
|
2024-04-14 21:54:55 +02:00
|
|
|
request = ["surf/h1-client-rustls"]
|
2023-07-03 15:07:55 +02:00
|
|
|
convert_from_notion = []
|
2023-01-29 13:15:41 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2024-03-21 22:23:05 +01:00
|
|
|
async-std = "1.12.0"
|
2023-04-09 19:28:31 +02:00
|
|
|
async-trait = "0.1.68"
|
2023-01-29 13:15:41 +01:00
|
|
|
base64 = "0.21.0"
|
2023-11-06 22:48:35 +01:00
|
|
|
chrono = "0.4.31"
|
2023-04-09 19:28:31 +02:00
|
|
|
futures-core = "0.3.28"
|
2023-01-29 13:15:41 +01:00
|
|
|
lazy_static = "1.4.0"
|
2023-10-17 21:12:42 +02:00
|
|
|
log = "0.4.20"
|
2023-01-29 13:15:41 +01:00
|
|
|
regex = "1.7.1"
|
2024-03-16 15:29:20 +01:00
|
|
|
serde = { version = "^1.0", features = ["derive"], default-features = false }
|
|
|
|
serde_json = { version = "^1.0", features = ["raw_value"], default-features = false }
|
2024-09-06 11:13:38 +02:00
|
|
|
surf = { version = "2.3.2", default-features = false }
|