php-tokio/Cargo.toml

24 lines
561 B
TOML
Raw Normal View History

2023-08-27 16:23:04 +02:00
[package]
name = "php-tokio"
repository = "https://github.com/danog/php-tokio"
homepage = "https://github.com/danog/php-tokio"
2023-08-27 17:38:45 +02:00
license = "AGPL-3.0-or-later"
2023-08-27 17:41:27 +02:00
description = "Use any async Rust library from PHP!"
2023-08-27 16:23:04 +02:00
version = "0.1.0"
authors = ["Daniil Gentili <daniil@daniil.it>"]
edition = "2021"
[dependencies]
2023-08-27 17:36:30 +02:00
nicelocal-ext-php-rs = "0.10.3"
2023-08-27 16:23:04 +02:00
tokio = { version = "1", features = ["full"] }
2023-08-27 17:45:36 +02:00
tokio-pipe = "^0.2"
2023-08-27 16:23:04 +02:00
lazy_static = "1.4.0"
2023-08-27 17:45:36 +02:00
libc = "^0.2"
2023-08-27 16:23:04 +02:00
php-tokio-derive = { version = "=0.1.0", path = "./crates/macros" }
[workspace]
members = [
"crates/macros",
]