You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
491 B
14 lines
491 B
2 years ago
|
[package]
|
||
|
name = "backend"
|
||
|
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" # Webserver itself
|
||
|
actix-session = { version = "0.7", features = ["cookie-session"] } # Session middleware
|
||
|
env_logger = "0.9" # Logger itself
|
||
|
log = "0.4" # Lightweight logging facade (Logging API)
|
||
|
uuid = { version = "1.2.2", features = ["v4", "fast-rng", "macro-diagnostics" ]}
|
||
|
cassandra-cpp = "1.2"
|