-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (30 loc) · 944 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
32
[package]
name = "ipv4-heatmap"
authors = [ "boB Rudis (@hrbrmstr)" ]
description = "Generate an IPv4 12th order Hilbert Heatmap from a file of IPv4 addresses."
readme = "README.md"
license = "MIT"
categories = ["data-visualization", "command-line-utilities"]
keywords = ["cli", "ipaddress", "ipv4", "datavis", "hilbert"]
homepage = "https://github.com/hrbrmstr/rust-ipv4-heatmap"
repository = "https://github.com/hrbrmstr/rust-ipv4-heatmap"
version = "0.5.1"
edition = "2021"
[dependencies]
clap = { version = "4.0.1", features = ["derive"] }
hex_color = "3.0.0"
cidr = "0.2.1"
rusttype = "0.9.2"
serde = "1.0.144"
serde_derive = "1.0.144"
serde_json = "1.0.85"
conv = "0.3.3"
# ril = { git = "https://github.com/jay3332/ril", features = ["all"] }
ril = { version = "0.10.1", features = ["all"] }
colorgrad = "0.6.1"
lazy_static = "1.4.0"
anyhow = "1.0.65"
#nsvg = "0.5.1"
#https://github.com/nickbrowne/nsvg
[profile.release]
opt-level = 3