-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
77 lines (58 loc) · 1.13 KB
/
Cargo.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "gorilla-physics"
version = "0.1.0"
edition = "2021"
[lib]
name = "gorilla_physics"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "pendulum_energy"
path = "examples/pendulum_energy.rs"
[[bin]]
name = "cart"
path = "examples/cart.rs"
[[bin]]
name = "cart_pole"
path = "examples/cart_pole.rs"
[[bin]]
name = "double_pendulum"
path = "examples/double_pendulum.rs"
[[bin]]
name = "acrobot"
path = "examples/acrobot.rs"
[[bin]]
name = "ball"
path = "examples/ball.rs"
[[bin]]
name = "1D_hopper"
path = "examples/1D_hopper.rs"
[[bin]]
name = "cube"
path = "examples/cube.rs"
[[bin]]
name = "rimless_wheel"
path = "examples/rimless_wheel.rs"
[[bin]]
name = "SLIP"
path = "examples/SLIP.rs"
[[bin]]
name = "LSLIP"
path = "examples/LSLIP.rs"
[[bin]]
name = "ALSLIP"
path = "examples/ALSLIP.rs"
[[bin]]
name = "rod_by_spring"
path = "examples/rod_by_spring.rs"
[[bin]]
name = "spring_drop"
path = "examples/spring_drop.rs"
[dependencies]
itertools = "0.13.0"
nalgebra = "0.33"
plotters = "0.3.5"
wasm-bindgen = "=0.2.89"
web-sys = { version = "0.3.65", features = ['console'] }
[build]
# rustflags = ["-Awarnings"]