-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (37 loc) · 941 Bytes
/
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
36
37
38
39
40
41
42
43
44
[package]
name = "later_operator"
version = "0.4.2"
authors = ["Josh Stoik <[email protected]>"]
edition = "2021"
rust-version = "1.81"
description = "Parsable, storable, printable comparison operators, w/ optional serde support."
license = "WTFPL"
repository = "https://github.com/Blobfolio/later_operator"
readme = "README.md"
keywords = [ "operator", "comparison", "relational" ]
exclude = [
".github",
".gitignore",
".righteous-sandbox.json",
"doc",
"justfile",
]
[package.metadata.docs.rs]
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
features = [ "serde" ]
default-target = "x86_64-unknown-linux-gnu"
[package.metadata.bashman]
name = "Later Operator"
[dev-dependencies]
serde_json = "1.0.*"
[dev-dependencies.serde]
version = "1.0.*"
features = [ "derive" ]
[dependencies.serde]
version = "1.0.*"
optional = true
[features]
default = []
# Enable (de)/serialization support.
serde = [ "dep:serde" ]