1
0
Fork 0
rust-actix/Cargo.toml

21 lines
618 B
TOML
Raw Permalink Normal View History

2022-03-21 19:35:53 +01:00
[package]
name = "actix-example"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
yew = { git = "https://github.com/yewstack/yew/", features = ["ssr"] }
2022-03-22 22:31:00 +01:00
diesel = { version = "1.4", features = ["sqlite", "r2d2"] }
2022-03-21 22:37:03 +01:00
dotenv = "0.15"
env_logger = "0.9.0"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "0.8", features = ["serde", "v4"] }
2022-03-22 22:31:00 +01:00
tokio = { version = "1.17", features = ["full"] }
reqwest = { version = "0.11", features = ["json"] }
warp = "0.3"