aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml7
-rw-r--r--README.md24
2 files changed, 28 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8e19132..035b702 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -16,7 +16,8 @@ tracing = "0.1"
[dependencies.chrono]
version = "0.4"
-features = ["serde"]
+default-features = false
+features = ["serde", "clock"]
[dependencies.reqwest]
version = "0.11"
@@ -34,8 +35,8 @@ features = ["derive"]
cargo-husky = "1"
wiremock = "0.5.2"
anyhow = "1.0.40"
-clap = { version = "3.0.0-rc.1", features = ["derive"] }
-skim = "0.9.4"
+clap = { version = "4.0", features = ["derive"] }
+skim = "0.10.2"
crossbeam-channel = "0.5"
toml = "0.5.8"
diff --git a/README.md b/README.md
index 9682777..16b6ede 100644
--- a/README.md
+++ b/README.md
@@ -7,8 +7,32 @@ Notion API client library for rust.
This project is under active development and this README will be updated as this library gets closer to a reliable state.
However, if you're really eager see the example todo cli application provided in [examples/todo](examples/todo).
+## Docs
+
+The generated documentation site is available here: https://docs.rs/notion/
+
## Building
```bash
cargo build
```
+
+### Pull Request builds
+
+
+
+## Testing
+
+We are in the process of moving to [wiremock](https://docs.rs/wiremock/latest/wiremock/) based notion api testing.
+Existing tests use a private notion org, and expect an environment variable set of `NOTION_API_TOKEN`.
+
+We understand that right now this is a bit painful, but any help in this migration journey is very welcome!
+
+## Contributing
+
+Contributions are always welcome!
+If you have an idea, it's best to float it by us before working on it to ensure no effort is wasted.
+If there's already an open issue for it, knock yourself out.
+
+If you have any questions, feel free to use [Discussions](https://github.com/jakeswenson/notion/discussions).
+Please don't hesitate to ask questions!