-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
46 lines (42 loc) · 1.26 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
[package]
name = "bullet"
version = "0.2.0"
authors = ["Sebastian Köln <[email protected]>"]
build = "build.rs"
license = "MIT"
repository = "https://gitlab.com/sebk/bullet.git"
homepage = "https://gitlab.com/sebk/bullet"
categories = ["science"]
description = "Supersonic Math"
edition = "2018"
[dependencies]
memmap = { version = "0.6.2", optional=true }
tuple = { git = "https://github.com/s3bk/tuple" }
lalrpop-util = "0.15.2"
regex = "0.2.11"
itertools = "0.7.8"
quote = { version = "0.5.2", optional = true }
syn = { version = "0.14.2", optional = true }
math_traits = { version = "0.2", git = "https://github.com/s3bk/math_traits" }
proc-macro2 = { version = "0.3.6", optional = true }
num-bigint = "0.2.0"
num-traits = "0.2.5"
num-rational = "0.2.1"
log = "*"
env_logger = "*"
parity-wasm = { version = "0.40", optional = true }
cuda = { git = "https://github.com/s3bk/cuda", optional = true }
[build-dependencies]
lalrpop = "0.15.2"
[features]
nvidia = ["cuda"]
simd = ["tuple/impl_simd"]
codegen = ["syn", "quote", "proc-macro2"]
wasm = ["parity-wasm"]
jit = ["memmap", "simd"]
avx = []
default = []
[dev-dependencies]
hound = "3.4.0"
termion = "1.5.1"
bullet_macros = { path="bullet_macros" }