forked from linebender/parley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 988 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
[workspace]
resolver = "2"
members = [
"fontique",
"parley",
"examples/tiny_skia_render",
"examples/swash_render",
"examples/vello_editor",
]
[workspace.package]
edition = "2021"
# Keep in sync with RUST_MIN_VER in .github/workflows/ci.yml, with the relevant README.md files
# and with the MSRV in the `Unreleased` section of CHANGELOG.md.
rust-version = "1.75"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/linebender/parley"
[workspace.lints]
clippy.doc_markdown = "warn"
clippy.semicolon_if_nothing_returned = "warn"
clippy.trivially_copy_pass_by_ref = "warn"
rust.unused_qualifications = "warn"
[workspace.dependencies]
fontique = { version = "0.2.0", default-features = false, path = "fontique" }
parley = { version = "0.2.0", default-features = false, path = "parley" }
peniko = { version = "0.2.0", default-features = false }
skrifa = { version = "0.22.3", default-features = false }
swash = { version = "0.1.19", default-features = false }