-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 1.09 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
[package]
name = "rets_expression"
version = "0.2.3"
authors = ["Bryan Burgers <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Implementation of RETS Validation Expressions from RESO RCP19"
readme = "README.md"
documentation = "https://docs.rs/rets_expression"
homepage = "https://github.com/zenlist/rets_expression"
repository = "https://github.com/zenlist/rets_expression"
keywords = ["rets", "validation", "expression", "reso", "rcp19"]
[dependencies]
chrono = { version = "0.4.26", default-features = false, features = ["alloc"] }
miette = "7.1.0"
regex-lite = { version = "0.1.0", optional = true }
serde_json = { version = "1.0.100", default-features = false, features = ["alloc"] }
winnow = { version = "0.6.18", default-features = false, features = ["alloc"] }
[dev-dependencies]
chrono-tz = { version = "0.8.3", features = ["serde"] }
serde = { version = "1.0.171", features = ["derive"] }
[features]
default = ["std"]
std = ["match_function", "chrono/clock", "chrono/serde"]
match_function = ["regex-lite"]
[[test]]
name = "compliance_tests"
harness = false
required-features = ["std"]