mirror of
https://github.com/danog/php-tokio.git
synced 2024-11-26 12:24:58 +01:00
29 lines
630 B
TOML
29 lines
630 B
TOML
[package]
|
|
name = "php-tokio"
|
|
repository = "https://github.com/danog/php-tokio"
|
|
homepage = "https://github.com/danog/php-tokio"
|
|
license = "Apache-2.0"
|
|
description = "Use any async Rust library from PHP!"
|
|
version = "0.1.2"
|
|
authors = ["Daniil Gentili <daniil@daniil.it>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
ext-php-rs = "0.10.2"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-pipe = "^0.2"
|
|
lazy_static = "1.4.0"
|
|
libc = "^0.2"
|
|
php-tokio-derive = { version = "=0.1.0", path = "./crates/macros" }
|
|
|
|
|
|
[workspace]
|
|
members = [
|
|
"crates/macros",
|
|
"examples/reqwest",
|
|
]
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docs"]
|
|
|