-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 831 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "rusty_mujoco"
version = "0.3.0"
edition = "2024"
authors = ["kanarus <kanarus786@gmail.com>"]
documentation = "https://docs.rs/rusty_mujoco"
homepage = "https://crates.io/crates/rusty_mujoco"
repository = "https://github.com/rust-control/rusty_mujoco"
readme = "README.md"
license = "Apache-2.0"
description = "Rust bindings for the MuJoCo physics simulator"
keywords = ["mujoco", "rl", "ml", "physics", "robotics"]
categories = ["api-bindings", "science::robotics", "simulation"]
[build-dependencies]
bindgen = { optional = true, version = "=0.72.1" }
cc = { version = "=1.2.45" }
[dev-dependencies]
glfw = "0.60"
[features]
bindgen = ["dep:bindgen"] # run bindgen at build time, instead of using pre-generated bindgen.rs
# internal
DEBUG = []