Update deps

This commit is contained in:
Daniil Gentili 2023-08-27 19:52:56 +02:00
parent 905dc72279
commit 721a84861a
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7
2 changed files with 5 additions and 5 deletions

View File

@ -4,12 +4,12 @@ repository = "https://github.com/danog/php-tokio"
homepage = "https://github.com/danog/php-tokio"
license = "AGPL-3.0-or-later"
description = "Use any async Rust library from PHP!"
version = "0.1.1"
version = "0.1.2"
authors = ["Daniil Gentili <daniil@daniil.it>"]
edition = "2021"
[dependencies]
nicelocal-ext-php-rs = "0.10.3"
nicelocal-ext-php-rs = "0.10.4"
tokio = { version = "1", features = ["full"] }
tokio-pipe = "^0.2"
lazy_static = "1.4.0"

View File

@ -2,13 +2,13 @@
name = "example-reqwest"
version = "0.1.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
php-tokio = "^0.1"
nicelocal-ext-php-rs = { version = "^0.10.3", features = ["anyhow"] }
php-tokio = "^0.1.2"
nicelocal-ext-php-rs = { version = "^0.10.4", features = ["anyhow"] }
reqwest = "^0.11"