-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
34 lines (31 loc) · 1002 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "axum-messages"
version = "0.7.0"
edition = "2021"
authors = ["Max Countryman <hello@maxcountryman.com>"]
categories = ["asynchronous", "network-programming", "web-programming"]
description = "🛎️ One-time notification messages for Axum."
homepage = "https://github.com/maxcountryman/axum-messages"
keywords = ["axum", "flash", "message", "messages", "notification"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/maxcountryman/axum-messages"
[dependencies]
async-trait = "0.1.77"
axum-core = "0.4.3"
http = "1.0.0"
parking_lot = "0.12.1"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1"
tower = "0.4"
tower-sessions-core = "0.13.0"
tracing = { version = "0.1.40", features = ["log"] }
[dev-dependencies]
axum = { version = "0.7.0", features = ["macros"] }
http-body-util = "0.1"
hyper = "1.0"
tokio = { version = "1.20", features = ["macros", "rt-multi-thread"] }
tower = "0.4"
tower-sessions = "0.13.0"
[[example]]
name = "basic"