-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (24 loc) · 1.29 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
[package]
name = "fluent-comparisons"
version = "1.0.4"
authors = ["geo-ant <geos.blog@posteo.de>"]
edition = "2021"
homepage = "/~https://github.com/geo-ant/fluent-comparisons"
repository = "/~https://github.com/geo-ant/fluent-comparisons"
categories = ["development-tools", "rust-patterns", "no-std"]
description = "Boost readability by writing multicomparison expressions like `if any_of!({a,b,c}>=5) {...}` while keeping the benefits of hand-written code."
readme = "README.md"
license = "MIT"
keywords = ["fluent", "DRY", "multi", "comparison", "expressions"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# We can specify a local path dependency as well as a version. If building locally, the local path will
# be used, but on crates.io the version dependency will be used, which is just extremely helpful for development.
# See this Reddit post: https://www.reddit.com/r/rust/comments/a39er8/how_do_you_publish_your_cargo_workspace_packages/
# And the Rust Doc: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-path-dependencies
fluent-comparisons-macros = { version = "1.0.0", path = "fluent-comparisons-macros" }
[workspace]
members = ["fluent-comparisons-macros"]
[dev-dependencies]
rand = "0.8"
macrotest = "1.0"