forked from jakeswenson/notion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (35 loc) · 769 Bytes
/
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
35
36
37
38
39
40
41
42
[package]
name = "notion-wasm"
version = "0.5.1"
authors = ["Jake Swenson <[email protected]>"]
edition = "2021"
readme = "README.md"
resolver = "2"
description = "A Notion Api Client"
license = "MIT"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
serde_json = "1.0"
thiserror = "1.0"
tracing = "0.1"
[dependencies.chrono]
version = "0.4"
default-features = false
features = ["serde", "clock"]
[dependencies.reqwest]
version = "0.11.13"
features = ["json", "stream"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies]
cargo-husky = "1"
anyhow = "1.0.40"
clap = { version = "4.0", features = ["derive"] }
skim = "0.10.2"
crossbeam-channel = "0.5"
toml = "0.5.8"
[dev-dependencies.config]
version = "0.11.0"
features = ["toml"]