forked from UdHo/mapvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (45 loc) · 1.12 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
[package]
name = "mapvas"
readme = "README.md"
description = "A map viewer with drawing functionality"
version = "0.1.1"
authors = ["Udo Hoffmann <hoffmann.odu@gmail.com>"]
edition = "2021"
keywords = ["map", "openstreetmap", "drawing"]
homepage = "https://github.com/UdHo/mapvas"
repository = "https://github.com/UdHo/mapvas.git"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1.0.72"
async-std = "1.12.0"
axum = "0.6.19"
femtovg = "0.7.1"
futures = "0.3.28"
glutin = "0.30.9"
glutin-winit = "0.3.0"
image = "0.24.6"
itertools = "0.11.0"
log = "0.4.19"
raw-window-handle = "0.5.2"
rayon = "1.7.0"
resource = "0.5.0"
serde = "1.0.178"
surf = "2.3.2"
thiserror = "1.0.44"
tokio = {version = "1", features = ["full"]}
tracing-subscriber = { version = "0.3.16", features = ["env-filter"]}
tower-http = { version = "0.4.3", features = ["trace"] }
winit = "0.28.6"
tracing = "0.1.37"
serde_json = "1.0.104"
single-instance = "0.3.3"
env_logger = "0.10.0"
regex = "1.9.1"
rand = "0.8.5"
clap = {version ="4.3.19", features=["derive"]}
[[bin]]
name = "mapvas"
path = "src/mapvas/main.rs"
[[bin]]
name = "mapcat"
path = "src/mapcat/main.rs"