From a48bccfdb4850e0271dfe8abcf20aaab0f531af0 Mon Sep 17 00:00:00 2001 From: Sanskar Jethi Date: Mon, 9 Aug 2021 21:35:19 +0530 Subject: [PATCH] Update Cargo.toml to point to head Update Cargo.toml to point to head --- Cargo.lock | 7 ++++--- Cargo.toml | 4 ++-- test.py | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 008ccecfd..5f6591960 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -999,11 +999,11 @@ dependencies = [ [[package]] name = "pyo3-asyncio" version = "0.14.0" -source = "git+https://github.com/awestlake87/pyo3-asyncio?rev=dd6f2cc7838a2990ed15447ff9ef9f93fa51423d#dd6f2cc7838a2990ed15447ff9ef9f93fa51423d" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08097b330a06c83c704112fde04d27dda074818451809a4384b2a66c6d51d7b9" dependencies = [ "futures", "inventory", - "lazy_static", "once_cell", "pyo3", "pyo3-asyncio-macros", @@ -1013,7 +1013,8 @@ dependencies = [ [[package]] name = "pyo3-asyncio-macros" version = "0.14.0" -source = "git+https://github.com/awestlake87/pyo3-asyncio?rev=dd6f2cc7838a2990ed15447ff9ef9f93fa51423d#dd6f2cc7838a2990ed15447ff9ef9f93fa51423d" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3be08f3da9195947db0b6b64a9a5e91da602444c76f96ed32748d1ef1a89961" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 99e62fba2..a46e787c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,12 +15,12 @@ crate-type = ["cdylib", "rlib"] [dependencies.pyo3] version = "0.14.1" -features = ["extension-module", "auto-initialize"] +features = ["extension-module"] [dependencies] tokio = { version = "1.7.0", features = ["full"] } dashmap = {git = "https://github.com/quake/dashmap", branch = "parking_lot", features = ["parking_lot"]} -pyo3-asyncio = { git = "https://github.com/awestlake87/pyo3-asyncio", rev = "dd6f2cc7838a2990ed15447ff9ef9f93fa51423d", features = ["attributes", "tokio-runtime"] } +pyo3-asyncio = { version="0.14.0" , features = ["attributes", "tokio-runtime"] } anyhow = "1.0.38" actix-web = "4.0.0-beta.8" futures-util = "0.3.15" diff --git a/test.py b/test.py index a659aee4d..9caf3df21 100644 --- a/test.py +++ b/test.py @@ -54,4 +54,4 @@ def blocker(): if __name__ == "__main__": app.add_header("server", "robyn") - app.start(port=5000) + app.start(port=5001)