-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 770 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (25 loc) · 770 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]
authors = ["snowpoke <hello@snowpoke.ink>"]
categories = ["data-structures", "rust-patterns", "parsing"]
description = "Derives FromStr for collection types like Vec<T> or HashSet<T>."
edition = "2018"
keywords = ["derive", "vec", "fromstr", "iterator", "vector"]
license = "MIT OR Apache-2.0"
name = "collections-fromstr"
readme = "README.md"
repository = "https://github.com/snowpoke/collections-fromstr"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
[dependencies]
if_chain = "1.0.1"
proc-macro2 = "1.0.26"
quote = "1.0.9"
syn = "1.0.72"
[dev-dependencies]
assert2 = "0.3.5"
derive_more = "0.99.13"
maplit = "1.0.2"
parse-display = "0.4.1"
trybuild = "1.0.42"