diff --git a/Cargo.lock b/Cargo.lock index ea39be3..287a391 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1851,6 +1851,7 @@ dependencies = [ "bitflags", "byteorder", "bytes 1.0.1", + "chrono", "crc", "crossbeam-channel", "crossbeam-queue", @@ -1877,6 +1878,7 @@ dependencies = [ "thiserror", "tokio-stream", "url", + "uuid", "whoami", ] diff --git a/Cargo.toml b/Cargo.toml index d180202..b42e8e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" juniper = "^0.15" juniper_warp = "^0.6" juniper-from-schema = { git = "https://github.com/davidpdrsn/juniper-from-schema" } -sqlx = { version = "^0.5", features = ["runtime-tokio-native-tls"] } +sqlx = { version = "^0.5", features = ["runtime-tokio-native-tls", "uuid", "chrono"] } warp = { version = "^0.3", default-features = false, features = ["compression", "tls"] } structopt = { version = "^0.3", features = ["wrap_help"] } toml = "^0.5"