From d0c714ff1cc634b585b65c569479ef377e6d0fec Mon Sep 17 00:00:00 2001 From: David Rousselie Date: Mon, 10 Jan 2022 15:10:56 +0100 Subject: [PATCH] Use contextswitch-types crates from Github --- Cargo.lock | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 115aceb..34f0989 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -347,6 +347,7 @@ dependencies = [ [[package]] name = "contextswitch-types" version = "0.1.0" +source = "git+https://github.com/dax/contextswitch-types.git#bde9fbc2e638c6cadad90702819bf5d4a324ace3" dependencies = [ "chrono", "serde", diff --git a/Cargo.toml b/Cargo.toml index 3577d6e..0ccb953 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ path = "src/main.rs" name = "contextswitch-api" [dependencies] -contextswitch-types = { path = "../types" } +contextswitch-types = { git = "https://github.com/dax/contextswitch-types.git" } actix-web = "=4.0.0-beta.19" actix-http = "=3.0.0-beta.18" tokio = { version = "1", features = ["macros", "rt-multi-thread"] }