blatherskite

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

Cargo.toml (846B)


      1 [package]
      2 name = "scuttlebutt"
      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 base64 = "0.13.0"
     11 cassandra-cpp = "1.1.0"
     12 chrono = { version = "0.4.22", features = ["serde"] }
     13 ctor = "0.1.23"
     14 # error-stack = "0.1"
     15 hex = "0.4.3"
     16 hmac = "0.12.1"
     17 jwt = "0.16.0"
     18 log = "0.4.17"
     19 more-asserts = "0.3.0"
     20 poem = { version = "1.3.42", features = ["test"] }
     21 poem-openapi = { version = "2.0.12", features = ["swagger-ui"] }
     22 pretty_assertions = "1.3.0"
     23 rand = "0.8.5"
     24 rustflake = "0.1.1"
     25 serde = "1.0.144"
     26 serde_json = "1.0.85"
     27 sha2 = "0.10.6"
     28 thiserror = "1.0.37"
     29 tokio = { version = "1", features = ["full"] }
     30 tracing-subscriber = "0.3.15"
     31 diesel = { version = "2.0.0", features = ["postgres"] }
     32 dotenvy = "0.15.6"
     33 html-escape = "0.2.12"