show 0.1.0

A `show!` debugging macro to print expressions with the Show formatting trait, without writing out `"{}", ` in the `println!` macro.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]

name = "show"
version = "0.1.0"
authors = ["Simon Sapin <simon.sapin@exyr.org>"]
license = "MIT"
repository = "https://github.com/SimonSapin/rust-std-candidates"
description ="""
A `show!` debugging macro to print expressions with the Show formatting trait, \
without writing out `"{}", ` in the `println!` macro.
"""


[lib]
name = "show"
path = "lib.rs"
doctest = false