forked from assert-rs/predicates-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 1.12 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
34
35
[workspace]
members = ["predicates-core", "predicates-tree"]
[package]
name = "predicates"
version = "0.9.0"
authors = ["Nick Stevens <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["predicate", "boolean", "combinatorial", "match", "logic"]
repository = "https://github.com/assert-rs/predicates-rs"
homepage = "https://github.com/assert-rs/predicates-rs"
documentation = "https://docs.rs/predicates"
description = """
An implementation of boolean-valued predicate functions.
"""
categories = ["data-structures", "rust-patterns"]
[badges]
travis-ci = { repository = "assert-rs/predicates-rs" }
appveyor = { repository = "assert-rs/predicates-rs" }
[dependencies]
predicates-core = { version = "0.9", path = "predicates-core" }
difference = { version = "2.0", optional = true }
normalize-line-endings = { version = "0.2.2", optional = true }
regex = { version="1.0", optional = true }
float-cmp = { version="0.4", optional = true }
[dev-dependencies]
predicates-tree = { version = "0.9", path = "predicates-tree" }
[features]
default = ["difference", "regex", "float-cmp", "normalize-line-endings"]
unstable = []