From 0910e3235b348396c7fddd8043043c22aa60673e Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Mon, 22 Feb 2021 14:53:47 +0100 Subject: Use the github versions of nalgebra and parry until they are released. --- Cargo.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index db1ac16..0b0cdd2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,10 +18,11 @@ members = [ "build/rapier2d", "build/rapier2d-f64", "build/rapier_testbed2d", "e #nalgebra = { path = "../nalgebra" } #kiss3d = { git = "https://github.com/sebcrozet/kiss3d" } -#parry2d = { git = "https://github.com/sebcrozet/parry" } -#parry3d = { git = "https://github.com/sebcrozet/parry" } -#parry2d-f64 = { git = "https://github.com/sebcrozet/parry" } -#parry3d-f64 = { git = "https://github.com/sebcrozet/parry" } +nalgebra = { git = "https://github.com/dimforge/nalgebra", branch = "dev" } +parry2d = { git = "https://github.com/dimforge/parry" } +parry3d = { git = "https://github.com/dimforge/parry" } +parry2d-f64 = { git = "https://github.com/dimforge/parry" } +parry3d-f64 = { git = "https://github.com/dimforge/parry" } #ncollide2d = { git = "https://github.com/dimforge/ncollide" } #ncollide3d = { git = "https://github.com/dimforge/ncollide" } #nphysics2d = { git = "https://github.com/dimforge/nphysics" } -- cgit