19 lines
497 B
TOML
19 lines
497 B
TOML
|
[package]
|
||
|
name = "live-view"
|
||
|
version = "0.0.8"
|
||
|
authors = ["Nathan Jaremko <nathan@jaremko.ca>"]
|
||
|
edition = "2018"
|
||
|
description = "A Live View implementation for Actix Web"
|
||
|
license = "MIT"
|
||
|
repository = "https://github.com/njaremko/liveview-rust"
|
||
|
|
||
|
[dependencies]
|
||
|
# actix-web = "4.0.0-beta.5"
|
||
|
actix-web = "3.3.2"
|
||
|
actix-web-actors = "3.0.0"
|
||
|
actix = "0.10.0"
|
||
|
serde = { version = "^1.0", features = ["derive"] }
|
||
|
serde_json = "^1.0"
|
||
|
askama = "^0.10"
|
||
|
hashbrown = { version = "^0.11", features = ["serde"] }
|