diff options
Diffstat (limited to 'dichroism/Cargo.toml')
-rw-r--r-- | dichroism/Cargo.toml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/dichroism/Cargo.toml b/dichroism/Cargo.toml index 8706e33..749d362 100644 --- a/dichroism/Cargo.toml +++ b/dichroism/Cargo.toml @@ -1,16 +1,17 @@ [package] name = "dichroism" version = "0.1.0" -authors = ["Adam Carpenter <atc@53hor.net>"] +authors = ["Adam T. Carpenter <atc@53hor.net>"] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -actix-web = "2.0" -actix-rt = "1.0" +actix-web = "3" +base64 = "0.13" +diesel = { version = "1.4", features = [ "sqlite" ] } +env_logger = "0.7" +lazy_static = "1" listenfd = "0.3" -serde = "1.0.106" -futures = "0.3.4" -serde_json = "1.0.52" - +log = "0.4" +regex = "1" |