-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 744 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 744 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
27
[package]
name = "traffic-sim"
version = "0.1.1"
authors = ["Alexander Rafferty <hello@alexanderrafferty.com>"]
edition = "2021"
description = "A simple traffic simulation package focussed on performance and realism."
license = "GPL-3.0-or-later"
repository = "https://github.com/Rafferty97/traffic-simple"
[dependencies]
slotmap = { version = "1.0.6" }
cgmath = { version = "0.18.0" }
smallvec = { version = "1.5.1" }
serde = { version = "1.0.117", optional = true, features = ["derive"] }
assert_approx_eq = "1.1.0"
rand = "0.8.5"
once_cell = "1.10.0"
log = "0.4.14"
itertools = "0.10.3"
serde_json = "1.0.82"
rand_distr = "0.4.3"
pathfinding = "3.0.13"
arrayvec = "0.7.2"
[features]
serde = ["dep:serde", "cgmath/serde"]
debug = ["serde"]