-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
54 lines (43 loc) · 2.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Aldaron's Device Interface / Clock #
# Copyright (c) 2017-2018 Jeron Lau <[email protected]> #
# Licensed under the MIT LICENSE #
# _ _ #
# /@\——————/@\ #
# .——— . | o o | .———— . . #
# | | | .——— .——— .——. [] .——. | .—— ———: ———: | . . #
# | | | | | | | \ \ <##> / / | | | / / | | | #
# |——— | | | | | | ¯ ¯ | | -- | | / / | \ / #
# | | | | |——— | | | | | | / / | | #
# | | ——— | | | ———— | | :——— :——— | | #
# | \ / __/ #
# ¯————————————¯ #
# Cargo.toml #
################################################################################
[package]
name = "adi_clock"
version = "0.3.0"
authors = ["Jeron Aldaron Lau <[email protected]>"]
################################################################################
license = "MIT"
documentation = "https://docs.rs/adi_clock"
homepage = "http://plopgrizzly.com/adi_clock"
repository = "https://github.com/plopgrizzly/adi_clock"
################################################################################
readme = "README.md"
description = """
Aldaron's Device Interface / Clock is a library developed by Plop Grizzly
for measuring / getting time, sleeping with precision, and smooth animation.
"""
keywords = [ "animation", "date", "clock", "timer", "hardware" ]
categories = [
"date-and-time", "hardware-support", "multimedia::audio",
"multimedia::video"
]
################################################################################
exclude = [
"examples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", ".gitignore",
"_config.yml", "ISSUE_TEMPLATE.md", "icon.png", "icon.ico"
]
################################################################################
[dependencies]
################################################################################