Cargo.toml
1 [package] 2 name = "Amnezichat" 3 version = "0.1.0" 4 edition = "2018" 5 6 [dependencies] 7 rocket = { version = "0.5.1", features = ["json"] } 8 tokio = { version = "1", features = ["full"] } 9 serde = { version = "1", features = ["derive"] } 10 html-escape = "0.2" 11 aes = "0.7.5" 12 block-modes = "0.8.1" 13 rand = "0.8" 14 chacha20poly1305 = "0.10" 15 hex = "0.4" 16 zeroize = "1.5" 17 base64 = "0.21.0" 18 regex = "1.7" 19 sha2 = "0.10"