[package]
edition = "2021"
rust-version = "1.89"
name = "appcore-filemaker"
version = "0.1.0-beta.1"
authors = ["dnettoRaw"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic declarative document, canvas, and dataset compiler for AppCore"
readme = "README.en.md"
keywords = [
"documents",
"graphics",
"pdf",
"svg",
"appcore",
]
categories = [
"graphics",
"template-engine",
]
license = "MIT"
repository = "https://github.com/dnettoRaw/app-core-public"
[package.metadata.appcore]
layer = "runtime"
versioning = "independent"
[lib]
name = "appcore_filemaker"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "intermediate"
path = "examples/intermediate.rs"
[[test]]
name = "canvas"
path = "tests/canvas.rs"
[[test]]
name = "compiler"
path = "tests/compiler.rs"
[[test]]
name = "debug_inspect"
path = "tests/debug_inspect.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[[test]]
name = "examples"
path = "tests/examples.rs"
[[test]]
name = "exclusions"
path = "tests/exclusions.rs"
[[test]]
name = "exporters"
path = "tests/exporters.rs"
[[test]]
name = "images"
path = "tests/images.rs"
[[test]]
name = "layout"
path = "tests/layout.rs"
[[test]]
name = "pages"
path = "tests/pages.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "reliability"
path = "tests/reliability.rs"
[[test]]
name = "source"
path = "tests/source.rs"
[[test]]
name = "table"
path = "tests/table.rs"
[[test]]
name = "table_source"
path = "tests/table_source.rs"
[[test]]
name = "text"
path = "tests/text.rs"
[[bench]]
name = "runtime"
path = "bench/runtime.rs"
harness = false
[dependencies.base64]
version = "0.22.1"
[dependencies.harfrust]
version = "0.13.3"
[dependencies.image]
version = "0.25.10"
features = [
"jpeg",
"png",
]
default-features = false
[dependencies.pdf-writer]
version = "0.15.0"
[dependencies.png]
version = "0.18.1"
[dependencies.rust_decimal]
version = "1.42.1"
features = [
"serde-with-str",
"std",
]
default-features = false
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.sha2]
version = "0.10.9"
[dependencies.skrifa]
version = "0.46.2"
[dependencies.subsetter]
version = "0.2.6"
[dependencies.thiserror]
version = "2.0.20"
[dependencies.tiny-skia]
version = "0.11.4"
[dependencies.unicode-bidi]
version = "0.3.18"
[dependencies.unicode-segmentation]
version = "1.13.3"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = ["Win32_Storage_FileSystem"]