-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathCargo.toml
33 lines (32 loc) · 1.11 KB
/
Cargo.toml
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
[project]
name = "hamcrest"
description = "A port of the Hamcrest testing library"
version = "0.1.5"
keywords = ["unit", "matcher", "testing", "assertions", "tdd"]
categories = ["development-tools", "development-tools::testing"]
license = "MIT/Apache-2.0"
repository = "https://github.com/ujh/hamcrest-rust"
documentation = "https://docs.rs/hamcrest"
readme = "README.md"
authors = [
"Carl Lerche <[email protected]>",
"Alex Crichton <[email protected]>",
"Ben Longbons <[email protected]>",
"Graham Dennis <[email protected]>",
"Michael Gehring <[email protected]>",
"Oliver Mader <[email protected]>",
"Robin Gloster <[email protected]>",
"Steve Klabnik <[email protected]>",
"Tamir Duberstein <[email protected]>",
"Thiago Pontes <[email protected]>",
"Urban Hafner <[email protected]>",
"Valerii Hiora <[email protected]>",
"Yehuda Katz <[email protected]>",
"Ian Létourneau <[email protected]>",
"Matt LaChance <[email protected]>",
"Flier Lu <[email protected]>",
"Povilas Balciunas <[email protected]>",
]
[dependencies]
num = "0.1.40"
regex = "0.2.2"