generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathCargo.toml
24 lines (22 loc) · 816 Bytes
/
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
[package]
name = "puffin_viewer"
version = "0.4.0"
authors = ["Embark <opensource@embark-studios.com>"]
description = "Viewer GUI for puffin profiler data"
license = "MIT OR Apache-2.0"
edition = "2018"
homepage = "https://github.com/EmbarkStudios/puffin"
repository = "https://github.com/EmbarkStudios/puffin"
readme = "README.md"
categories = ["development-tools::profiling", "gui"]
keywords = ["profiler", "instrumentation", "gamedev"]
include = [ "**/*.rs", "Cargo.toml"]
[dependencies]
puffin_egui = { version = "0.5.0", path = "../puffin_egui" }
puffin = { version = "0.7.0", path = "../puffin", features = ["serialization"] }
puffin_http = { version = "0.4.0", path = "../puffin_http" }
argh = "0.1"
eframe = { version = "0.14", features = ["persistence"] }
log = "0.4"
rfd = "0.4.3"
simple_logger = "1.11"