From d9b52d5fecbed9bcf80545102010ed1994939bf6 Mon Sep 17 00:00:00 2001 From: Michael Sippel Date: Fri, 10 Sep 2021 02:18:26 +0200 Subject: [PATCH] fix cargo dependencies --- sdf_editor/Cargo.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sdf_editor/Cargo.toml b/sdf_editor/Cargo.toml index 44b1df3..6394ec7 100644 --- a/sdf_editor/Cargo.toml +++ b/sdf_editor/Cargo.toml @@ -6,12 +6,13 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nako = {git= "https://gitlab.com/tendsinmende/nako.git"} -nako_std = {git= "https://gitlab.com/tendsinmende/nako.git"} -nakorender = {git="https://gitlab.com/tendsinmende/nako.git", default-features = false} +nako = {git= "https://gitlab.com/senvas/nako.git"} +nako_std = {git= "https://gitlab.com/senvas/nako.git"} +nakorender = {git="https://gitlab.com/senvas/nako.git", default-features = false} nested = { path = "../nested" } cgmath = "*" termion = "*" +font-kit = "*" [dependencies.async-std] version = "1.9.0"