-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
59 lines (52 loc) · 1.21 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
[package]
name = "sailor"
version = "0.1.0"
authors = ["Noah Hüsser <[email protected]>"]
edition = "2018"
description = "A sailing navigation application."
documentation = "https://docs.rs/sailor/"
homepage = "https://github.com/Yatekii/sailor"
repository = "https://github.com/Yatekii/sailor"
readme = "README.md"
categories = ["gui", "graphics", "rendering", "visualization", "science"]
keywords = ["sailing", "osm", "gps", "wgpu", "maps"]
license = "MIT OR Apache-2.0"
autobins = false
[lib]
name = "osm"
path = "src/lib/main.rs"
[[bin]]
name = "sailor"
path = "src/bin/main.rs"
[dependencies]
config = "0.10"
crossbeam-channel = "0.5"
imgui = "0.5"
imgui-wgpu = "0.11"
log = { version = "0.4", features = ["serde"] }
lyon = "0.13"
malloc_size_of_derive = "0.1"
nalgebra = "0.23"
nalgebra-glm = "0.9"
ncollide2d = "0.26"
nom = "6.0"
notify = "5.0.0-pre.4"
once_cell = "1.4"
parity-util-mem = "0.7"
pollster = "0.2"
pretty_env_logger = "0.4"
quick-protobuf = "0.8"
serde = "1.0"
serde_derive = "1.0"
shaderc = "0.6"
ureq = "1.5"
varint = "0.9"
wgpu = "0.6"
wgpu_glyph = "0.10"
winit = "0.22"
[dependencies.imgui-winit-support]
version = "0.5"
default-features = false
features = ["winit-22"]
[profile.release]
debug = true