1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "merge"
16version = "0.1.0"
17authors = ["Robin Krahl <[email protected]>"]
18exclude = [".builds/*"]
19description = "Merge multiple values into one"
20keywords = ["merge", "macros", "derive"]
21categories = ["rust-patterns"]
22license = "Apache-2.0 OR MIT"
23repository = "https://git.sr.ht/~ireas/merge-rs"
24[dependencies.merge_derive]
25version = "0.1.0"
26optional = true
27
28[dependencies.num-traits]
29version = "0.2.12"
30optional = true
31[dev-dependencies.envy]
32version = "0.4"
33
34[dev-dependencies.serde]
35version = "1.0"
36features = ["derive"]
37
38[dev-dependencies.structopt]
39version = "0.3"
40
41[dev-dependencies.toml]
42version = "0.5"
43
44[dev-dependencies.trybuild]
45version = "1.0"
46
47[features]
48default = ["derive", "num", "std"]
49derive = ["merge_derive"]
50num = ["num-traits"]
51std = []
52