portfolio/Cargo.toml
Isaac Mills e892c2f8a3
Some checks failed
ci/woodpecker/manual/woodpecker Pipeline failed
Initial commit
2024-03-18 18:21:35 -04:00

61 lines
1.8 KiB
TOML

[package]
name = "portfolio"
version = "0.1.0"
authors = ["Isaac Mills <rooster0055@protonmail.com>"]
edition = "2021"
rust-version = "1.72"
[dependencies]
cosmic-jotdown = { version = "0.1.0", path = "../cosmic-jotdown" }
eframe = { version = "0.26.2", default-features = false, features = [
"accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
# "default_fonts",
"wgpu", # Use the glow rendering backend. Alternative: "wgpu".
"x11",
"wayland",
] }
egui-glyphon = { version = "0.1.0", path = "../egui-glyphon" }
egui_extras = { version = "0.26.2", features = ["image", "http", "file"] }
encase = { version = "0.7.0", features = ["glam"] }
glam = "0.25.0"
image = { version = "0.24.9", features = ["jpeg", "png"] }
keyframe = { version = "1.1.1", default-features = false }
log = "0.4"
range-map = "0.2.0"
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
env_logger = "0.10"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
wgpu = { version = "0.19.3", features = ["webgpu", "webgl"] }
wasm-bindgen-futures = "0.4"
[profile.release]
opt-level = 2 # fast and small wasm
lto = true
panic = "abort"
strip = true
# Optimize all dependencies even in debug builds:
[profile.dev.package."*"]
opt-level = 2
[patch.crates-io]
[build-dependencies]
databake = "0.1.7"
glob = "0.3.1"
jotdown = { version = "0.3.2", path = "../jotdown", features = ["parser"] }
# If you want to use the bleeding edge version of egui and eframe:
# egui = { git = "https://github.com/emilk/egui", branch = "master" }
# eframe = { git = "https://github.com/emilk/egui", branch = "master" }
# If you fork https://github.com/emilk/egui you can test with:
# egui = { path = "../egui/crates/egui" }
# eframe = { path = "../egui/crates/eframe" }