mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
30 lines
726 B
TOML
30 lines
726 B
TOML
[package]
|
|
name = "codex-artifact-presentation"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
name = "codex_artifact_presentation"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
base64 = { workspace = true }
|
|
font8x8 = { workspace = true }
|
|
fontdue = { workspace = true }
|
|
image = { workspace = true, features = ["jpeg", "png"] }
|
|
ppt-rs = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tiny-skia = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
zip = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
tempfile = { workspace = true }
|