forked from fbernier/base62
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 743 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (27 loc) · 743 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
[package]
name = "base62"
version = "2.0.2"
authors = [
"François Bernier <frankbernier@gmail.com>",
"Chai T. Rex <ChaiTRex@users.noreply.github.com>",
"Kevin Darlington <kevin@outroot.com>",
"Christopher Tarquini <code@tarq.io>",
]
edition = "2018"
description = "A Base62 encoding/decoding library"
documentation = "https://docs.rs/base62/"
homepage = "https://github.com/fbernier/base62"
repository = "https://github.com/fbernier/base62"
readme = "README.md"
keywords = ["base62", "encoding", "decoding", "url", "shortener"]
license = "MIT"
exclude = [
".github/*",
]
[dev-dependencies]
criterion = { version = "0.4", default-features = false }
quickcheck = "1"
rand = "0.8"
[[bench]]
name = "base62"
harness = false