[go: up one dir, main page]

speculate 0.1.1

An RSpec inspired minimal testing framework for Rust.
Documentation
[package]
name = "speculate"
version = "0.1.1"
authors = ["Utkarsh Kukreti <utkarshkukreti@gmail.com>", "Grégoire Geis <git@gregoirege.is>"]
description = "An RSpec inspired minimal testing framework for Rust."
repository = "https://github.com/utkarshkukreti/speculate.rs"
license = "MIT"

[dependencies]
# Full features are needed for Syn, in order to have the Item enum.
syn = { version = "^0.14", features = [ "full" ] }

# Nightly feature is required to preserve span information.
proc-macro2 = { version = "^0.4", features = [ "nightly" ] }

quote = "^0.6"
unicode-xid = "^0.1"

[lib]
proc-macro = true

[features]
default = []
nightly = []