forked from RLBot/rlbot-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 792 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
[package]
name = "rlbot"
version = "0.7.0"
edition = "2018"
authors = ["John Simon <[email protected]>"]
description = "RLBot bindings for Rust"
documentation = "https://docs.rs/rlbot/"
repository = "https://github.com/whatisaphone/rlbot-rust"
readme = "README-crates-io.md"
keywords = ["rlbot", "rocket-league", "game"]
license = "MIT"
[badges]
travis-ci = { repository = "whatisaphone/rlbot-rust" }
[dependencies]
libloading = "0.5.0"
ratelimit = "0.4.3"
flatbuffers = "0.5.0"
na = { version = "0.18.0", package = "nalgebra", optional = true }
smallvec = "0.6.9"
[dev-dependencies]
na = { version = "0.18.0", package = "nalgebra" }
rand = "0.6.1"
winapi = { version = "0.3.5", features = ["synchapi"] }
winproc = "0.6.2"
[features]
default = ["nalgebra"]
nalgebra = ["na"]
strict = []