phprs 0.1.5

A PHP interpreter with build/package manager written in Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "phprs"
version = "0.1.5"
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.clap]
version = "4.5"
features = ["derive"]

[dependencies.dirs]
version = "5.0"

[dependencies.env_logger]
version = "0.11"

[dependencies.flate2]
version = "1.0"

[dependencies.log]
version = "0.4"

[dependencies.pulldown-cmark]
version = "0.9"

[dependencies.regex]
version = "1.10"

[dependencies.reqwest]
version = "0.12"
features = ["json"]

[dependencies.semver]
version = "1.0"
features = ["serde"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.tar]
version = "0.4"

[dependencies.tempfile]
version = "3.10"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.0"
features = ["full"]

[dependencies.toml]
version = "0.8"

[dependencies.zip]
version = "0.6"

[profile.dev]
opt-level = 0
debug = 2

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true

[profile.test]
opt-level = 1
debug = 2
incremental = true