Skip to content

Commit 40d13c7

Browse files
committed
docs
1 parent c449664 commit 40d13c7

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[package]
22
name = "async_py"
33
version = "0.2.0"
4+
description = "A Rust library for calling Python code asynchronously using pyo3 or rustpython."
45
edition = "2021"
6+
license = "MIT"
7+
repository = "https://github.com/marcomq/async_py"
8+
readme = "README.md"
9+
keywords = ["python", "async", "pyo3", "rustpython", "ffi"]
10+
categories = ["api-bindings", "asynchronous", "external-ffi-bindings"]
511

612
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
713
[dependencies]
@@ -36,5 +42,3 @@ features = ["threading"]
3642
[dev-dependencies.tokio]
3743
version = "1"
3844
features = ["full"]
39-
40-

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Add `async_py` to your `Cargo.toml`:
1919

2020
```toml
2121
[dependencies]
22-
async_py = { git = "https://github.com/marcomq/async_py" } # Or path, or crates.io version
22+
async_py = "0.2.0"
2323
tokio = { version = "1", features = ["full"] }
2424
```
2525

0 commit comments

Comments
 (0)