Skip to content

Commit 5c93141

Browse files
author
fedor
committed
first draft of c++ wrapper
1 parent 7f45450 commit 5c93141

34 files changed

+378
-5148
lines changed

Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ version = "0.2.0"
44

55
[dependencies]
66
bulletrs-sys = { path = "./bulletrs-sys" }
7-
mint = "0.4.2"
7+
mint = "0.5.0"
88

9-
[replace]
10-
"cc:1.0.2" = { path = "../cc-rs" }
9+
[dev-dependencies]
10+
cgmath = { version = "0.15.0", features = ["mint"] }
11+
12+
[patch.crates-io]
13+
"mint" = { git = "https://github.com/not-fl3/mint.git" }
1114

benches/get_base_position_and_orientation.rs

Lines changed: 0 additions & 73 deletions
This file was deleted.

bulletrs-sys/src/lib.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, dead_code)]
2-
// #![feature(repr_align)]
3-
// #![feature(attr_literals)]
42

5-
pub mod shared_memory;
6-
pub mod bt_bullet_dynamics_common;
3+
mod bt_bullet_dynamics_common;
74

8-
pub use shared_memory::*;
5+
pub use bt_bullet_dynamics_common::*;

0 commit comments

Comments
 (0)