-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (38 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
# Aldaron's Device Interface / Storage #
# Copyright (c) 2017 Plop Grizzly, Jeron Lau <jeron.lau@plopgrizzly.com> #
# Licensed under the MIT LICENSE #
# _ _ #
# /@\——————/@\ #
# .——— . | o o | .———— . . #
# | | | .——— .——— .——. [] .——. | .—— ———: ———: | . . #
# | | | | | | | \ \ <##> / / | | | / / | | | #
# |——— | | | | | | ¯ ¯ | | -- | | / / | \ / #
# | | | | |——— | | | | | | / / | | #
# | | ——— | | | ———— | | :——— :——— | | #
# | \ / __/ #
# ¯————————————¯ #
# Cargo.toml #
################################################################################
[package]
name = "adi_storage"
version = "0.2.1"
authors = ["Jeron Aldaron Lau <jeron.lau@plopgrizzly.com>"]
################################################################################
license = "MIT"
documentation = "https://docs.rs/adi_storage"
homepage = "http://plopgrizzly.com/adi_storage"
repository = "https://github.com/plopgrizzly/adi_storage"
################################################################################
readme = "README.md"
description = """
Aldaron's Device Interface / Storage is a library developed by Plop Grizzly
for interfacing with a persistent storage device (ie: hard drive, etc.)."
"""
keywords = ["storage", "file", "filesystem", "save", "load"]
categories = ["filesystem", "hardware-support"] # ?future? "asynchronous", "compression", "concurrency", "database", "network-programming"
################################################################################
exclude = ["examples/*", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", ".gitignore"]
################################################################################
[dependencies]
whoami = "0.2.0"
################################################################################