-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (33 loc) · 928 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
37
[package]
name = "env_to_array"
version = "0.3.1"
edition = "2021"
authors = ["cyphersnake <[email protected]>"]
repository = "https://github.com/cyphersnake/env_to_array"
description = "Auxiliary crate for collecting arrays in different encodings from string constant & environment variables"
keywords = [
"env",
"const",
"encode",
"decode",
"array"
]
license = "MIT"
[lib]
proc-macro = true
[features]
default = ["bs58", "bs64", "bs32", "bs85", "hex"]
bs58 = ["dep:bs58"]
bs64 = ["dep:base64"]
hex = ["dep:hex"]
bs32 = ["dep:base32"]
bs85 = ["dep:base85"]
[dependencies]
base32 = { version = "0.4.0", optional = true }
base64 = { version = "0.13.1", optional = true }
base85 = { version = "1.1.1", optional = true }
bs58 = { version = "0.5.0", optional = true }
hex = { version = "0.4.3", optional = true }
itertools = "0.10.5"
proc-macro2 = "1.0.47"
syn = { version = "1.0.103", features = ["full"] }