Skip to content

Commit

Permalink
Workspacify
Browse files Browse the repository at this point in the history
  • Loading branch information
laurmaedje committed Jun 16, 2024
1 parent b2288af commit 789239d
Show file tree
Hide file tree
Showing 11 changed files with 304 additions and 459 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@ desktop.ini
/target
bench/target
debug
.idea
.idea

# Tests
tests/subsets
tests/ttx/*.otf
tests/ttx/*_ref.ttx
270 changes: 267 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 19 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,29 @@
[package]
name = "subsetter"
version = "0.1.1"
authors = ["Laurenz Maedje <[email protected]>, Laurenz Stampfl <[email protected]>"]
[workspace]
members = ["tests/cli", "tests/fuzz"]
resolver = "2"

[workspace.package]
version = "0.11.0"
authors = ["Laurenz <[email protected]>, Laurenz Stampfl <[email protected]>"]
edition = "2021"
description = "Reduces the size and coverage of OpenType fonts."
repository = "https://github.com/typst/subsetter"
readme = "README.md"
license = "MIT OR Apache-2.0"

[package]
name = "subsetter"
description = "Reduces the size and coverage of OpenType fonts."
categories = ["compression", "encoding"]
keywords = ["subsetting", "OpenType", "PDF"]
exclude = ["fonts/*"]
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
license = { workspace = true }

[dev-dependencies]
freetype-rs = { git = "https://github.com/LaurenzV/freetype-rs", rev = "d27ea29" }
skrifa = "0.19.1"
ttf-parser = {git = "https://github.com/LaurenzV/ttf-parser", branch = "master"}
freetype-rs = {git = "https://github.com/LaurenzV/freetype-rs"}

ttf-parser = { git = "https://github.com/RazrFalcon/ttf-parser", rev = "9bbd432" }
1 change: 0 additions & 1 deletion tests/.gitignore

This file was deleted.

Loading

0 comments on commit 789239d

Please sign in to comment.