From 444e1146845b3284a4a6920167d0371fd5a662cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Hlusi=C4=8Dka?= Date: Thu, 14 May 2020 17:55:56 +0200 Subject: [PATCH] Remove path dependencies --- Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 62889f3..441b8d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,8 +10,10 @@ edition = "2018" crate-type = ['cdylib', 'lib'] [dependencies] -ammolite-math = { path = "../ammolite/ammolite-math" } -mlib = { path = "../mlib" } +ammolite-math = { git = "https://github.com/metaview-org/ammolite" } +# ammolite-math = { path = "../ammolite/ammolite-math" } +mlib = { git = "https://github.com/metaview-org/mlib" } +# mlib = { path = "../mlib" } include_dir = { git = "https://github.com/erickt/include_dir", branch = "sort" } json5 = "0.2.5" lazy_static = "1.4.0"