forked from maplibre/mbtileserver-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·39 lines (36 loc) · 964 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
33
34
35
36
37
38
39
[package]
name = "mbtileserver"
description = "A Rust-based mbtiles server"
homepage = "https://github.com/maplibre/mbtileserver-rs"
repository = "https://github.com/maplibre/mbtileserver-rs"
version = "0.1.7"
authors = ["Kaveh Karimi <[email protected]>"]
readme = "README.md"
edition = "2021"
license = "MIT/Apache-2.0"
include = [
"**/*.rs",
"templates/static/dist/*",
"templates/map.html",
"Cargo.toml",
"README.md"
]
[badges]
coveralls = { repository = "maplibre/mbtileserver-rs" }
[dependencies]
clap = { version = "3.1", features = ["derive"] }
flate2 = "1.0"
hyper = { version = "0.14", features = ["server", "http1", "http2", "tcp"] }
lazy_static = "1.4"
libsqlite3-sys = "0.24"
log = "0.4"
pretty_env_logger = "0.4"
r2d2 = "0.8"
r2d2_sqlite = "0.20"
regex = "1.5"
rusqlite = "0.27"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.18", features = ["full"] }
[dev-dependencies]
tempdir = "0.3"