-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathCargo.toml
31 lines (29 loc) · 759 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
25
26
27
28
29
30
31
[package]
authors = ["David Peter <[email protected]>"]
description = "A graphical tool to visualize binary data"
homepage = "https://github.com/sharkdp/binocle"
license = "Apache-2.0 OR MIT"
name = "binocle"
readme = "README.md"
repository = "https://github.com/sharkdp/binocle"
version = "0.3.2"
edition = "2021"
rust-version = "1.66"
[features]
optimize = ["log/release_max_level_warn"]
default = ["optimize"]
[dependencies]
clap = { version = "3.0", features = ["derive"] }
colorgrad = "0.5"
egui = "0.22"
egui-wgpu = "0.22.0"
egui-winit = { version = "0.22", default-features = false }
env_logger = "0.9"
log = "0.4"
pixels = "0.13"
winit = "0.28"
winit_input_helper = "0.14"
anyhow = "1.0"
humansize = "1.1"
memmap2 = "0.5.0"
proc-macro2 = "1.0.69"