2023-06-01 16:05:06 +03:00
|
|
|
[workspace]
|
2023-08-28 04:07:29 +03:00
|
|
|
resolver = "2"
|
2023-10-28 11:50:49 +03:00
|
|
|
members = ["martin", "martin-tile-utils", "mbtiles"]
|
2023-06-01 16:05:06 +03:00
|
|
|
|
|
|
|
[workspace.package]
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT OR Apache-2.0"
|
2023-07-06 03:56:23 +03:00
|
|
|
repository = "https://github.com/maplibre/martin"
|
2024-06-25 22:34:14 +03:00
|
|
|
rust-version = "1.76"
|
2023-07-10 21:38:48 +03:00
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://martin.maplibre.org/"
|
2023-06-01 16:05:06 +03:00
|
|
|
|
2023-11-17 03:29:25 +03:00
|
|
|
[workspace.lints.rust]
|
2023-11-19 13:06:37 +03:00
|
|
|
unused_qualifications = "warn"
|
2023-11-17 21:55:05 +03:00
|
|
|
# Lints inheritance from workspace is not yet supported
|
|
|
|
# Crate mbtiles uses unsafe code, so we can't forbid it here
|
|
|
|
# unsafe_code = "forbid"
|
2023-11-17 03:29:25 +03:00
|
|
|
|
|
|
|
[workspace.lints.clippy]
|
2023-11-20 09:27:51 +03:00
|
|
|
pedantic = { level = "warn", priority = -1 }
|
2023-11-17 03:29:25 +03:00
|
|
|
derive_partial_eq_without_eq = "allow"
|
|
|
|
implicit_hasher = "allow"
|
|
|
|
missing_errors_doc = "allow"
|
|
|
|
missing_panics_doc = "allow"
|
|
|
|
module_name_repetitions = "allow"
|
|
|
|
|
2023-06-01 16:05:06 +03:00
|
|
|
[workspace.dependencies]
|
2024-06-27 00:15:27 +03:00
|
|
|
actix-cors = "0.7"
|
2022-08-15 16:54:48 +03:00
|
|
|
actix-http = "3"
|
|
|
|
actix-rt = "2"
|
|
|
|
actix-web = "4"
|
2023-06-03 03:40:22 +03:00
|
|
|
anyhow = "1.0"
|
2023-11-13 09:03:40 +03:00
|
|
|
approx = "0.5.1"
|
2022-08-15 16:54:48 +03:00
|
|
|
async-trait = "0.1"
|
Implement dynamic font support `/font/<name>/<start>-<end>` (#755)
This implements dynamic font protobuf generation, allowing users to
request font ranges on the fly, and combining them in any order, e.g.
`Font1,Font2,Font3`, same as with sprites and tiles
This is a first iteration, without any multithreading support. In
theory, this could be done far faster by generating SDFs with multiple
threads.
### Current process
* during init, figure out all glyphs available in each font, and store
them as a bitset
* during request:
* combine requested bitsets to figure out which glyph should come from
which font file
* load those glyphs from files (using a single instance of the freetype
lib)
* convert them to SDFs and package them into a protobuf
---------
Co-authored-by: Lucas <zhangyijunmetro@hotmail.com>
2023-10-28 08:10:48 +03:00
|
|
|
bit-set = "0.5.3"
|
2024-05-17 08:05:19 +03:00
|
|
|
brotli = ">=5, <7"
|
2023-06-01 16:05:06 +03:00
|
|
|
cargo-husky = { version = "1", features = ["user-hooks"], default-features = false }
|
2022-10-01 10:48:11 +03:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2023-06-01 16:05:06 +03:00
|
|
|
criterion = { version = "0.5", features = ["async_futures", "async_tokio", "html_reports"] }
|
|
|
|
ctor = "0.2"
|
2024-06-27 00:15:27 +03:00
|
|
|
deadpool-postgres = "0.14"
|
2023-10-10 18:10:17 +03:00
|
|
|
enum-display = "0.1"
|
2024-01-21 03:52:09 +03:00
|
|
|
env_logger = "0.11"
|
2023-02-08 19:55:37 +03:00
|
|
|
flate2 = "1"
|
2024-06-25 22:34:14 +03:00
|
|
|
flume = "0.11"
|
2022-11-26 12:46:40 +03:00
|
|
|
futures = "0.3"
|
2023-06-01 16:05:06 +03:00
|
|
|
indoc = "2"
|
2023-10-20 06:40:08 +03:00
|
|
|
insta = "1"
|
2024-05-17 08:05:19 +03:00
|
|
|
itertools = "0.13"
|
|
|
|
json-patch = "2.0"
|
2024-02-01 21:56:40 +03:00
|
|
|
lambda-web = { version = "0.2.1", features = ["actix4"] }
|
2024-03-23 00:04:16 +03:00
|
|
|
libsqlite3-sys = { version = ">=0.27", features = ["bundled"] }
|
2018-03-26 14:12:43 +03:00
|
|
|
log = "0.4"
|
2024-06-27 03:31:41 +03:00
|
|
|
martin-tile-utils = { path = "./martin-tile-utils", version = "0.5.1" }
|
|
|
|
mbtiles = { path = "./mbtiles", version = "0.11.1" }
|
2024-06-25 22:34:14 +03:00
|
|
|
md5 = "0.7.0"
|
2023-12-22 09:01:50 +03:00
|
|
|
moka = { version = "0.12", features = ["future"] }
|
2022-08-15 16:54:48 +03:00
|
|
|
num_cpus = "1"
|
2024-02-13 05:59:51 +03:00
|
|
|
pbf_font_tools = { version = "2.5.1", features = ["freetype"] }
|
2024-05-17 08:05:19 +03:00
|
|
|
pmtiles = { version = "0.10", features = ["http-async", "mmap-async-tokio", "tilejson", "reqwest-rustls-tls-native-roots"] }
|
2022-08-15 16:54:48 +03:00
|
|
|
postgis = "0.9"
|
2022-09-13 09:18:01 +03:00
|
|
|
postgres = { version = "0.19", features = ["with-time-0_3", "with-uuid-1", "with-serde_json-1"] }
|
2022-08-15 16:54:48 +03:00
|
|
|
postgres-protocol = "0.6"
|
2023-12-27 21:50:07 +03:00
|
|
|
pprof = { version = "0.13", features = ["flamegraph", "criterion"] }
|
2023-10-10 18:10:17 +03:00
|
|
|
pretty_assertions = "1"
|
2023-02-06 22:32:28 +03:00
|
|
|
regex = "1"
|
2024-06-14 01:33:29 +03:00
|
|
|
rstest = "0.21"
|
2024-07-09 06:31:55 +03:00
|
|
|
rustls = "0.23.11"
|
2024-04-10 02:36:40 +03:00
|
|
|
# ring feature does not require NASM windows executable, but works slower
|
|
|
|
#rustls = { version = "0.23", default-features = false, features = ["logging", "std", "tls12", "ring"] }
|
2024-01-17 04:42:11 +03:00
|
|
|
rustls-native-certs = "0.7"
|
|
|
|
rustls-pemfile = "2"
|
2022-08-15 16:54:48 +03:00
|
|
|
semver = "1"
|
2022-10-31 23:28:21 +03:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2023-06-01 16:05:06 +03:00
|
|
|
serde_json = "1"
|
2023-11-13 06:22:04 +03:00
|
|
|
serde_with = "3"
|
2022-07-29 12:20:49 +03:00
|
|
|
serde_yaml = "0.9"
|
2023-11-13 09:03:40 +03:00
|
|
|
size_format = "1.0.2"
|
2023-12-07 10:20:32 +03:00
|
|
|
spreet = { version = "0.11", default-features = false }
|
2024-06-25 22:34:14 +03:00
|
|
|
sqlite-compressions = { version = "0.2.12", default-features = false, features = ["bsdiffraw", "gzip"] }
|
2024-06-20 05:54:00 +03:00
|
|
|
sqlite-hashes = { version = "0.7.3", default-features = false, features = ["md5", "aggregate", "hex"] }
|
2023-09-30 03:40:32 +03:00
|
|
|
sqlx = { version = "0.7", features = ["sqlite", "runtime-tokio"] }
|
2023-09-06 07:30:40 +03:00
|
|
|
subst = { version = "0.3", features = ["yaml"] }
|
2022-12-13 13:02:38 +03:00
|
|
|
thiserror = "1"
|
2024-05-25 08:17:26 +03:00
|
|
|
tile-grid = "0.6"
|
2023-11-20 09:27:51 +03:00
|
|
|
tilejson = "0.4"
|
2023-11-10 06:28:15 +03:00
|
|
|
tokio = { version = "1", features = ["macros"] }
|
2024-04-10 02:36:40 +03:00
|
|
|
tokio-postgres-rustls = "0.12"
|
2023-12-22 09:01:50 +03:00
|
|
|
url = "2.5"
|
2024-06-25 22:34:14 +03:00
|
|
|
xxhash-rust = { version = "0.8", features = ["xxh3"] }
|
2023-06-04 05:50:55 +03:00
|
|
|
|
2023-10-04 04:20:41 +03:00
|
|
|
[profile.dev.package]
|
2023-06-04 05:50:55 +03:00
|
|
|
# See https://github.com/launchbadge/sqlx#compile-time-verification
|
2023-10-04 04:20:41 +03:00
|
|
|
sqlx-macros.opt-level = 3
|
2023-10-10 18:10:17 +03:00
|
|
|
# See https://docs.rs/insta/latest/insta/#optional-faster-runs
|
|
|
|
insta.opt-level = 3
|
|
|
|
similar.opt-level = 3
|
|
|
|
|
2023-12-19 04:24:43 +03:00
|
|
|
#[patch.crates-io]
|
2023-12-24 12:30:45 +03:00
|
|
|
#enum-display = { path = "../enum-display" }
|
2023-11-09 03:46:23 +03:00
|
|
|
#pmtiles = { path = "../pmtiles-rs" }
|
2023-11-20 09:27:51 +03:00
|
|
|
#sqlite-hashes = { path = "../sqlite-hashes" }
|
2023-11-19 13:06:37 +03:00
|
|
|
#tilejson = { path = "../tilejson" }
|
2023-11-20 09:27:51 +03:00
|
|
|
#pmtiles = { git = "https://github.com/nyurik/pmtiles-rs", branch = "override" }
|
|
|
|
#tilejson = { git = "https://github.com/nyurik/tilejson", branch = "btreemap" }
|
2024-06-27 03:31:41 +03:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
# Make release binaries a bit smaller
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|