-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
26 lines (24 loc) · 927 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
[workspace]
members = ["sdf_glyph_renderer", "pbf_font_tools", "build_pbf_glyphs"]
resolver = "2"
[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.74.0"
[workspace.dependencies]
clap = { version = "4.5.0", features = ["cargo", "derive"] }
freetype-rs = { version = "0.35.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"] }