-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (23 loc) · 845 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
[package]
name = "to-binary"
version = "0.4.0"
authors = ["0xAtropine"]
edition = "2018"
repository = "https://github.com/0xAtropine/To-Binary"
homepage = "https://github.com/0xAtropine/To-Binary"
description = "Converts From Hex, UTF-8, Vector of Bytes, or a Byte Slice to a Binary String And Implements Many Useful Functions For Binary Strings"
keywords = ["binary","string","bin","conversion","hex"]
categories = ["data-structures", "encoding","text-processing"]
license = "MIT OR Apache-2.0"
readme = "README.md"
[[example]]
name = "conversion"
path = "examples/conversion.rs"
[[example]]
name = "usage"
path = "examples/usage.rs"
[badge]
travis-ci = { repository = "0xAtropine/To-Binary", branch = "master" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hex = "0.4.2"