forked from sile-typesetter/sile
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(tooling): Unscramble manifest ordering, remove unimplemented ba…
…con config
- Loading branch information
Showing
3 changed files
with
92 additions
and
88 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,102 +1,56 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ ".", "rusile" ] | ||
|
||
[workspace.package] | ||
version = "0.15.5" | ||
edition = "2021" | ||
rust-version = "1.71.0" | ||
authors = [ | ||
"Simon Cozens", | ||
"Caleb Maclennan <[email protected]>", | ||
"Olivier Nicole", | ||
"Didier Willis" | ||
] | ||
homepage = "https://sile-typesetter.org" | ||
repository = "https://github.com/sile-typesetter/sile" | ||
license = "MIT" | ||
|
||
[workspace.dependencies.mlua] | ||
version = "0.10" | ||
features = [ "anyhow" ] | ||
|
||
[package] | ||
name = "sile" | ||
description = "Simon’s Improved Layout Engine" | ||
readme = "README.md" | ||
build = "build-aux/build.rs" | ||
version = "0.15.6" | ||
|
||
[package.edition] | ||
workspace = true | ||
|
||
[package.rust-version] | ||
workspace = true | ||
|
||
[package.authors] | ||
workspace = true | ||
[workspace.package] | ||
version = "0.15.6" | ||
edition = "2021" | ||
rust-version = "1.71.0" | ||
authors = [ | ||
"Simon Cozens", | ||
"Caleb Maclennan <[email protected]>", | ||
"Olivier Nicole", | ||
"Didier Willis" | ||
] | ||
homepage = "https://sile-typesetter.org" | ||
repository = "https://github.com/sile-typesetter/sile" | ||
license = "MIT" | ||
|
||
[package.homepage] | ||
workspace = true | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
".", | ||
"rusile" | ||
] | ||
|
||
[package.repository] | ||
workspace = true | ||
[package.edition] | ||
workspace = true | ||
|
||
[package.license] | ||
workspace = true | ||
[package.rust-version] | ||
workspace = true | ||
|
||
[package.metadata.bacon.jobs] | ||
cmd = [ "cargo", "build", "--color", "always" ] | ||
[package.authors] | ||
workspace = true | ||
|
||
[package.metadata.typos.default] | ||
locale = "en-us" | ||
extend-ignore-re = [ | ||
"(?s)(#|//|--|%)\\s*typos: ignore start.*?\\n\\s*(#|//|--|%)\\s*typos: ignore end" | ||
] | ||
extend-ignore-identifiers-re = [ | ||
"[a-f0-9]{7}", | ||
"^.{2,3}$", | ||
"^twords?", | ||
"[Pp]arms", | ||
"wdth", | ||
"0fpt", | ||
"^ot", | ||
"^hb_ot", | ||
"^HB_", | ||
"^Tyre$", | ||
"PoDoFo", | ||
"_Flate", | ||
"pointint", | ||
"DEPENDEES", | ||
"EPdf", | ||
"FileAttachement" | ||
] | ||
[package.homepage] | ||
workspace = true | ||
|
||
[package.metadata.typos.default.extend-words] | ||
beveled = "bevelled" | ||
bevelled = "bevelled" | ||
craters = "creators" | ||
neet = "need" | ||
[package.repository] | ||
workspace = true | ||
|
||
[package.metadata.typos.files] | ||
ignore-hidden = false | ||
extend-exclude = [ | ||
"/.git", | ||
"CHANGELOG.md", | ||
"build-aux/ax*", | ||
"languages/*/hyphens*", | ||
"lua-libraries/*", | ||
"lua_modules/*", | ||
"node_modules/*", | ||
"tests/*.expected", | ||
"cmake/*.diff", | ||
"libtexpdf" | ||
] | ||
[package.license] | ||
workspace = true | ||
|
||
[[bin]] | ||
name = "sile" | ||
required-features = [ "cli" ] | ||
|
||
[profile.release] | ||
lto = true | ||
|
||
[features] | ||
default = [ | ||
"cli", | ||
|
@@ -124,8 +78,13 @@ manpage = [ "clap_mangen" ] | |
powershell = [ "completions" ] | ||
zsh = [ "completions" ] | ||
|
||
[profile.release] | ||
lto = true | ||
[workspace.dependencies.mlua] | ||
version = "0.10" | ||
features = [ "anyhow" ] | ||
|
||
[workspace.dependencies.sile] | ||
path = "." | ||
version = "0.15.6" | ||
|
||
[dependencies.anyhow] | ||
version = "1.0" | ||
|
@@ -171,3 +130,48 @@ features = [ "build", "cargo", "git", "gitoxide" ] | |
|
||
[package.metadata.docs.rs] | ||
features = [ "luajit", "vendored" ] | ||
|
||
[package.metadata.typos.default] | ||
locale = "en-us" | ||
extend-ignore-re = [ | ||
"(?s)(#|//|--|%)\\s*typos: ignore start.*?\\n\\s*(#|//|--|%)\\s*typos: ignore end" | ||
] | ||
extend-ignore-identifiers-re = [ | ||
"[a-f0-9]{7}", | ||
"^.{2,3}$", | ||
"^twords?", | ||
"[Pp]arms", | ||
"wdth", | ||
"0fpt", | ||
"^ot", | ||
"^hb_ot", | ||
"^HB_", | ||
"^Tyre$", | ||
"PoDoFo", | ||
"_Flate", | ||
"pointint", | ||
"DEPENDEES", | ||
"EPdf", | ||
"FileAttachement" | ||
] | ||
|
||
[package.metadata.typos.default.extend-words] | ||
beveled = "bevelled" | ||
bevelled = "bevelled" | ||
craters = "creators" | ||
neet = "need" | ||
|
||
[package.metadata.typos.files] | ||
ignore-hidden = false | ||
extend-exclude = [ | ||
"/.git", | ||
"CHANGELOG.md", | ||
"build-aux/ax*", | ||
"languages/*/hyphens*", | ||
"lua-libraries/*", | ||
"lua_modules/*", | ||
"node_modules/*", | ||
"tests/*.expected", | ||
"cmake/*.diff", | ||
"libtexpdf" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters