forked from EmbarkStudios/puffin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (33 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "puffin_egui"
version = "0.29.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
categories = ["development-tools::profiling", "game-development", "gui"]
description = "Show puffin profiler flamegraph in-game using egui"
edition = "2021"
homepage = "https://github.com/EmbarkStudios/puffin"
keywords = ["profiler", "gamedev", "gui"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/EmbarkStudios/puffin"
[dependencies]
egui = { version = "0.30.0", default-features = false }
egui_extras = { version = "0.30.0", default-features = false, features = ["serde"] }
indexmap = { version = "2.1.0", features = ["serde"] }
natord = "1.0.9"
once_cell = "1.7"
parking_lot = "0.12"
puffin = { version = "0.19.1", features = ["packing", "web"] }
serde = { version = "1.0", features = ["derive"], optional = true }
time = { version = "0.3.17", default-features = false, features = [
"formatting",
"macros",
] }
vec1 = "1.8"
web-time = "0.2"
[dev-dependencies]
eframe = { version = "0.28.0", default-features = false, features = [
"default_fonts",
"glow",
"persistence",
] }