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
|
[package]
name = "try_match"
version = "0.4.2"
authors = ["yvt <i@yvt.jp>"]
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.56"
readme = "README.md"
repository = "https://github.com/yvt/try_match-rs"
description = """
Fallible pattern matching with a function-like syntax
"""
keywords = ["match", "pattern", "macro", "variant", "enum"]
categories = ["rust-patterns", "no-std"]
[features]
default = ["implicit_map"]
implicit_map = ["try_match_inner"]
unstable = []
std = []
_doc_cfg = []
[dependencies]
try_match_inner = { version = "0.5.2", path = "inner", optional = true }
[workspace]
[dev-dependencies]
trybuild = "1.0.80"
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu"]
|