39 lines
2.7 KiB
TOML
39 lines
2.7 KiB
TOML
# ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
# ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
|
|
# ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
|
|
# ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
|
|
# ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
|
|
# ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
|
|
# ┃ Copyright (c) 2017, the Perspective Authors. ┃
|
|
# ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
|
|
# ┃ This file is part of the Perspective library, distributed under the terms ┃
|
|
# ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
|
|
[package]
|
|
name = "rust-axum"
|
|
version = "4.5.2"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# TODO(texodus): Due to feature unification and `wasm_bindgen_futures`
|
|
# requirements for `Send` bounds interacting poorly with `rust-analyzer`,
|
|
# this cannot require the "axum-ws" feature by defualt without impacting
|
|
# developer sanity. In a stand-alone project outside the perspective repo, this
|
|
# hack is not necessary.
|
|
#
|
|
# This feature flag is passed on the CLI by `package.json` instead.
|
|
_hack = ["perspective/axum-ws"]
|
|
|
|
[dependencies]
|
|
perspective = { version = "4.5.2", default-features = false }
|
|
axum = { version = ">=0.8,<0.9", features = ["ws"] }
|
|
futures = "0.3"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tower-http = { version = "0.5.0", features = ["fs", "trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|