diff options
author | 2021-05-14 07:18:20 -0700 | |
---|---|---|
committer | 2021-05-14 07:18:20 -0700 | |
commit | f7ef8d6d7f009990ba0c6be61cca507f097673b6 (patch) | |
tree | 1b58a5a8ca08f8fe8bb2a71ae832db21dd4953c0 /Cargo.toml | |
parent | 5b3816b043f3e97878b04b948241466a2527b94d (diff) | |
download | notion-f7ef8d6d7f009990ba0c6be61cca507f097673b6.tar.gz notion-f7ef8d6d7f009990ba0c6be61cca507f097673b6.tar.zst notion-f7ef8d6d7f009990ba0c6be61cca507f097673b6.zip |
First pass at a working Notion api client from the public beta
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0c3f3d4 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "notion" +version = "0.1.0" +authors = ["Jake Swenson <jake@jakeswenson.com>"] +edition = "2018" + +[dependencies] +serde_json = "1.0.64" + +[dependencies.chrono] +version = "0.4.19" +features = ["serde"] + +[dependencies.reqwest] +version = "0.11" +features = ["json"] + +[dependencies.tokio] +version = "1" +features = ["full"] + +[dependencies.serde] +version = "1.0" +features = ["derive"] |