-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
38 lines (34 loc) · 976 Bytes
/
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
[package]
name = "gym-rs"
version = "0.3.1"
authors = ["MathisWellmann <wellmannmathis@gmail.com>"]
edition = "2021"
license-file = "LICENSE"
description = "OpenAI's Gym written in pure Rust"
repository = "https://github.com/MathisWellmann/gym-rs"
readme = "README.md"
keywords = ["ai", "ml", "physical", "environment", "benchmark"]
categories = ["simulation", "science", "algorithms"]
exclude = ["img/"]
[lints.rust]
unused_imports = "warn"
unused_crate_dependencies = "warn"
missing_docs = "warn"
dead_code = "deny"
[lints.clippy]
all = "warn"
[dependencies]
rand = "0.8"
rand_pcg = "0.3"
log = "0.4.11"
derive-new = "0.7"
cosyne = { version = "0.3.2", optional = true }
sdl2 = { version = "0.37", features = ["gfx"] }
serde = { version = "1.0", features = ["derive"] }
derivative = { version = "2.2" }
nalgebra = "0.33"
ordered-float = { version = ">=3.9.1", features = ["serde", "rand"] }
num-traits = "0.2"
[features]
default = ["bundled"]
bundled = ["sdl2/bundled"]