-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
36 lines (29 loc) · 895 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
33
34
35
36
[package]
authors = ["Vladimir Matveev <[email protected]>"]
name = "ecoji"
version = "1.0.0"
description = "Provides base-1024 encoding and decoding using an alphabet of emojis."
documentation = "https://docs.rs/ecoji"
homepage = "https://github.com/netvl/ecoji.rs"
repository = "https://github.com/netvl/ecoji.rs"
readme = "README.md"
keywords = ["encode", "decode", "base1024", "emoji", "unicode"]
categories = ["encoding", "command-line-utilities"]
license = "MIT/Apache-2.0"
[badges]
travis-ci = { repository = "netvl/ecoji.rs", branch = "master" }
maintenance = { status = "passively-maintained" }
[lib]
name = "ecoji"
[[bin]]
name = "ecoji"
required-features = ["build-binary"]
[features]
build-binary = ["clap"]
[build-dependencies]
phf_codegen = "0.7.21"
[dev-dependencies]
quickcheck = "0.6"
[dependencies]
phf = "0.7.21"
clap = { version = "2.31.1", optional = true }