notion-client/Cargo.toml

24 lines
558 B
TOML
Raw Normal View History

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
[features]
request = []
convert_from_notion = []
2023-01-29 13:15:41 +01:00
[dependencies]
async-trait = "0.1.68"
2023-01-29 13:15:41 +01:00
base64 = "0.21.0"
chrono = "0.4.23"
futures-core = "0.3.28"
2023-01-29 13:15:41 +01:00
lazy_static = "1.4.0"
regex = "1.7.1"
reqwest = { version = "0.11.14", features = ["json"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
[dev-dependencies]
tokio = { version = "1.28.1", features = ["macros"] }