blatherskite

a toy discord-like chat app backend written for a swe class
Log | Files | Refs | README

Cargo.toml (515B)


      1 [package]
      2 name = "chatterbox"
      3 version = "0.1.0"
      4 edition = "2021"
      5 
      6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
      7 
      8 [dependencies]
      9 anyhow = "1.0.65"
     10 cassandra-cpp = "1.1.0"
     11 chrono = "0.4.22"
     12 futures = "0.3.25"
     13 futures-util = "0.3.24"
     14 hex = "0.4.3"
     15 poem = { version = "1.3.43", features = ["websocket"] }
     16 rustflake = "0.1.1"
     17 serde = "1.0.145"
     18 serde_json = "1.0.85"
     19 tokio = { version = "1.21.1", features = ["full"] }
     20 tracing-subscriber = "0.3.15"
     21 websocket = "0.26.5"