forked from stadiamaps/sdf_font_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (23 loc) · 901 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
[workspace]
members = ["sdf_glyph_renderer", "pbf_font_tools", "build_pbf_glyphs"]
[workspace.package]
authors = ["Ian Wagner <[email protected]>", "Luke Seelenbinder <[email protected]>", "Yuri Astrakhan <[email protected]>"]
edition = "2021"
license = "BSD-3-Clause"
repository = "https://github.com/stadiamaps/sdf_font_tools"
rust-version = "1.65"
[workspace.dependencies]
clap = { version = "3.2.25", features = ["cargo"] }
freetype-rs = { version = "0.32.0" }
futures = "0.3.28"
glob = "0.3.1"
num_cpus = "1.16.0"
pbf_font_tools = { version = "2.3.0", features = ["freetype"], path = "pbf_font_tools" }
protobuf = "3.2.0"
protobuf-codegen = "3.2.0"
protoc-bin-vendored = "3.0.0"
sdf_glyph_renderer = { version = "1.0.0", features = ["freetype"], path = "sdf_glyph_renderer" }
serde_json = "1.0.100"
spmc = "0.3.0"
thiserror = "1.0.41"
tokio = { version = "1.29.1", features = ["rt"] }