-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathCargo.toml
37 lines (31 loc) · 1.13 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
36
37
[package]
name = "egui_logger"
version = "0.7.0"
edition = "2021"
authors = ["Jacob <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/RegenJacob/egui_logger"
description = "log implementation for egui"
categories = ["gui", "game-development", "development-tools::debugging"]
include = ["src/*.rs", "Cargo.toml", "LICENSE"]
[features]
puffin = ["dep:puffin"]
[dependencies]
log = "0.4"
egui = "0.31"
regex = "1.11"
puffin = { version = "0.19", optional = true }
[dev-dependencies]
eframe = "0.31"
multi_log = "0.1"
env_logger = "0.11"
puffin_egui = { version = "0.29.0" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
chrono = { version = "0.4", default-features = false, features = ["alloc", "clock"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
chrono = { version = "0.4", default-features = false, features = ["alloc", "clock", "wasmbind"] }
[patch.crates-io]
# It seems that puffin and puffin_egui are really outdated
puffin = { git = "https://github.com/tedsteen/puffin", branch = "upgrade-egui" }
puffin_egui = { git = "https://github.com/tedsteen/puffin", branch = "upgrade-egui" }