[package]
edition = "2024"
name = "phprs"
version = "0.1.0"
authors = ["Ying kit WONG"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A PHP interpreter with build/package manager written in Rust"
homepage = "https://github.com/yingkitw/phprs"
documentation = "https://docs.rs/phprs"
readme = "README.md"
keywords = [
"php",
"interpreter",
"build",
"package-manager",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/yingkitw/phprs"
[lib]
name = "phprs"
path = "src/lib.rs"
[[test]]
name = "comprehensive_tests"
path = "tests/comprehensive_tests.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "error_handling"
path = "tests/error_handling.rs"
[[test]]
name = "example_verification"
path = "tests/example_verification.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "php_examples"
path = "tests/php_examples.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.anyrepair]
version = "0.2"
[dependencies.env_logger]
version = "0.11"
[dependencies.log]
version = "0.4"
[dependencies.pulldown-cmark]
version = "0.9"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true