[package]
edition = "2024"
name = "aex"
version = "0.1.4"
authors = ["Eric <calidion@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A web server for rust."
readme = "README.md"
keywords = [
"rust",
"web",
"http",
"server",
"router",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/Free-Web-Movement/aex"
[lib]
name = "aex"
path = "src/lib.rs"
[[bin]]
name = "http-server"
path = "src/main.rs"
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
[[test]]
name = "communicators_event_test"
path = "tests/communicators_event_test.rs"
[[test]]
name = "communicators_pipe_test"
path = "tests/communicators_pipe_test.rs"
[[test]]
name = "communicators_spreader_test"
path = "tests/communicators_spreader_test.rs"
[[test]]
name = "connection_context_test"
path = "tests/connection_context_test.rs"
[[test]]
name = "connection_manager_test"
path = "tests/connection_manager_test.rs"
[[test]]
name = "connection_node_test"
path = "tests/connection_node_test.rs"
[[test]]
name = "connection_protocol_test"
path = "tests/connection_protocol_test.rs"
[[test]]
name = "connection_status_test"
path = "tests/connection_status_test.rs"
[[test]]
name = "connection_types_test"
path = "tests/connection_types_test.rs"
[[test]]
name = "crypto_session_key_test"
path = "tests/crypto_session_key_test.rs"
[[test]]
name = "http_content_type_test"
path = "tests/http_content_type_test.rs"
[[test]]
name = "http_header_test"
path = "tests/http_header_test.rs"
[[test]]
name = "http_media_test"
path = "tests/http_media_test.rs"
[[test]]
name = "http_meta_test"
path = "tests/http_meta_test.rs"
[[test]]
name = "http_method_test"
path = "tests/http_method_test.rs"
[[test]]
name = "http_middlewares_validator_test"
path = "tests/http_middlewares_validator_test.rs"
[[test]]
name = "http_middlewares_websocket_test"
path = "tests/http_middlewares_websocket_test.rs"
[[test]]
name = "http_params_test"
path = "tests/http_params_test.rs"
[[test]]
name = "http_req_test"
path = "tests/http_req_test.rs"
[[test]]
name = "http_res_test"
path = "tests/http_res_test.rs"
[[test]]
name = "http_router_test"
path = "tests/http_router_test.rs"
[[test]]
name = "http_status_test"
path = "tests/http_status_test.rs"
[[test]]
name = "http_test"
path = "tests/http_test.rs"
[[test]]
name = "http_types_test"
path = "tests/http_types_test.rs"
[[test]]
name = "http_version_test"
path = "tests/http_version_test.rs"
[[test]]
name = "server_test"
path = "tests/server_test.rs"
[[test]]
name = "tcp_listener_test"
path = "tests/tcp_listener_test.rs"
[[test]]
name = "tcp_router_ok_test"
path = "tests/tcp_router_ok_test.rs"
[[test]]
name = "tcp_types_test"
path = "tests/tcp_types_test.rs"
[[test]]
name = "time_test"
path = "tests/time_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22.1"
[dependencies.bincode]
version = "2.0.0-rc.3"
[dependencies.bitflags]
version = "2.10.0"
features = ["serde"]
[dependencies.bytes]
version = "1.11.1"
[dependencies.chacha20poly1305]
version = "0.10.1"
[dependencies.chrono]
version = "0.4.43"
[dependencies.dashmap]
version = "6.1.0"
[dependencies.form_urlencoded]
version = "1.2.2"
[dependencies.futures]
version = "0.3.31"
[dependencies.get_if_addrs]
version = "0.5.3"
[dependencies.once_cell]
version = "1.21.3"
[dependencies.regex]
version = "1.12.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.sha1]
version = "0.10.6"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tokio-util]
version = "0.7.18"
[dependencies.url]
version = "2.5.8"
[dependencies.x25519-dalek]
version = "2.0.1"
[dependencies.zz-validator]
version = "0.1.1"
[dev-dependencies.reqwest]
version = "0.13.2"
features = [
"json",
"blocking",
]
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true