| # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO |
| # |
| # When uploading crates to the registry Cargo will automatically |
| # "normalize" Cargo.toml files for maximal compatibility |
| # with all versions of Cargo and also rewrite `path` dependencies |
| # to registry (e.g., crates.io) dependencies. |
| # |
| # If you are reading this file be aware that the original Cargo.toml |
| # will likely look very different (and much more reasonable). |
| # See Cargo.toml.orig for the original contents. |
| |
| [package] |
| edition = "2021" |
| rust-version = "1.70" |
| name = "merge" |
| version = "0.2.0" |
| authors = ["Robin Krahl <[email protected]>"] |
| build = false |
| exclude = [".builds/*"] |
| autobins = false |
| autoexamples = false |
| autotests = false |
| autobenches = false |
| description = "Merge multiple values into one" |
| homepage = "https://sr.ht/~ireas/merge-rs" |
| documentation = "https://docs.rs/merge" |
| readme = "README.md" |
| keywords = [ |
| "merge", |
| "macros", |
| "derive", |
| ] |
| categories = ["rust-patterns"] |
| license = "Apache-2.0 OR MIT" |
| repository = "https://git.sr.ht/~ireas/merge-rs" |
| |
| [lib] |
| name = "merge" |
| path = "src/lib.rs" |
| |
| [[example]] |
| name = "args" |
| path = "examples/args.rs" |
| |
| [[example]] |
| name = "user" |
| path = "examples/user.rs" |
| |
| [[test]] |
| name = "compile" |
| path = "tests/compile.rs" |
| |
| [[test]] |
| name = "derive" |
| path = "tests/derive.rs" |
| |
| [[test]] |
| name = "strategies" |
| path = "tests/strategies.rs" |
| |
| [dependencies.merge_derive] |
| version = "0.2.0" |
| optional = true |
| |
| [dependencies.num-traits] |
| version = "0.2.12" |
| optional = true |
| |
| [dev-dependencies.envy] |
| version = "0.4" |
| |
| [dev-dependencies.serde] |
| version = "1.0" |
| features = ["derive"] |
| |
| [dev-dependencies.structopt] |
| version = "0.3" |
| |
| [dev-dependencies.toml] |
| version = "0.8" |
| |
| [dev-dependencies.trybuild] |
| version = "1.0" |
| |
| [features] |
| default = [ |
| "derive", |
| "num", |
| "std", |
| ] |
| derive = ["merge_derive"] |
| num = ["num-traits"] |
| std = [] |