From: Fayeed Pawaskar Date: Mon, 24 Jul 2023 13:41:41 +0000 (+0530) Subject: updated cargo to use git X-Git-Tag: v0.9.2~23^2^2 X-Git-Url: https://git.sagredo.dev/?a=commitdiff_plain;h=40b6890c5402fc79a10136c23024a42e11af3c66;p=scryer-prolog.git updated cargo to use git --- diff --git a/Cargo.lock b/Cargo.lock index ec3941ae..66246593 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -316,6 +316,7 @@ dependencies = [ [[package]] name = "dashu" version = "0.3.1" +source = "git+https://github.com/coasys/dashu.git#ae7ee53fad213e09da5fe4b30e9e9e8bce96aedd" dependencies = [ "dashu-base", "dashu-float", @@ -327,10 +328,12 @@ dependencies = [ [[package]] name = "dashu-base" version = "0.3.1" +source = "git+https://github.com/coasys/dashu.git#ae7ee53fad213e09da5fe4b30e9e9e8bce96aedd" [[package]] name = "dashu-float" version = "0.3.2" +source = "git+https://github.com/coasys/dashu.git#ae7ee53fad213e09da5fe4b30e9e9e8bce96aedd" dependencies = [ "dashu-base", "dashu-int", @@ -342,6 +345,7 @@ dependencies = [ [[package]] name = "dashu-int" version = "0.3.1" +source = "git+https://github.com/coasys/dashu.git#ae7ee53fad213e09da5fe4b30e9e9e8bce96aedd" dependencies = [ "cfg-if", "dashu-base", @@ -354,6 +358,7 @@ dependencies = [ [[package]] name = "dashu-macros" version = "0.3.1" +source = "git+https://github.com/coasys/dashu.git#ae7ee53fad213e09da5fe4b30e9e9e8bce96aedd" dependencies = [ "dashu-base", "dashu-float", @@ -366,6 +371,7 @@ dependencies = [ [[package]] name = "dashu-ratio" version = "0.3.2" +source = "git+https://github.com/coasys/dashu.git#ae7ee53fad213e09da5fe4b30e9e9e8bce96aedd" dependencies = [ "dashu-base", "dashu-float", @@ -1029,6 +1035,7 @@ checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" [[package]] name = "libffi" version = "3.2.0" +source = "git+https://github.com/coasys/libffi-rs.git?branch=windows-space#f6e9e50efde0aa4e940dd6f709a59bb426875362" dependencies = [ "libc", "libffi-sys", @@ -1037,6 +1044,7 @@ dependencies = [ [[package]] name = "libffi-sys" version = "2.3.0" +source = "git+https://github.com/coasys/libffi-rs.git?branch=windows-space#f6e9e50efde0aa4e940dd6f709a59bb426875362" dependencies = [ "cc", ] @@ -1286,6 +1294,7 @@ dependencies = [ [[package]] name = "num-modular" version = "0.6.0" +source = "git+https://github.com/coasys/num-modular.git#87d6dc30600207445e07c2cc84e0a47ff58f0aca" [[package]] name = "num-order" diff --git a/Cargo.toml b/Cargo.toml index 76b0aa62..58d13d0c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,8 +68,8 @@ derive_deref = "1.1.1" http-body-util = "0.1.0-rc.2" bytes = "1" reqwest = { version = "0.11.18", features = ["blocking"] } -dashu = { path = "../dashu" } -libffi = { path = "../libffi-rs/libffi-rs" } +dashu = { git = "https://github.com/coasys/dashu.git" } +libffi = { git = "https://github.com/coasys/libffi-rs.git", branch = "windows-space" } rand = "0.8.5" [dev-dependencies]