-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 759 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (27 loc) · 759 Bytes
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
[package]
name = "tileline"
version = "0.1.0"
edition = "2021"
authors = ["Tglman <tglman@tglman.com>"]
license = "MIT OR Apache-2.0"
description= "Simple library to generate SVG block graph"
documentation = "https://docs.rs/tileline/"
repository = "https://github.com/tglman/tileline"
homepage = "https://tileline.tglman.org"
keywords = ["svg", "events", "tileline"]
category = ["visualization"]
readme = "README.md"
exclude = ["site"]
[badges]
github = { repository = "tglman/tileline", branch = "master" }
[dependencies]
quick-xml="0.31"
colorsys = "0.6.7"
builder-pattern= "0.4"
chrono = {version = "0.4.24" , optional =true}
[features]
year_line=["dep:chrono"]
[[example]]
name = "rainbow_year"
required-features = ["year_line"]
crate-type=["bin"]