19 lines
510 B
TOML
19 lines
510 B
TOML
[package]
|
|
name = "english-to-cron"
|
|
version = "0.1.7"
|
|
edition = "2021"
|
|
description = "converts natural language into cron expressions"
|
|
homepage = "https://docs.rs/english-to-cron"
|
|
documentation = "https://docs.rs/english-to-cron"
|
|
authors = ["Elad Kaplan <kaplan.elad@gmail.com>"]
|
|
repository = "https://github.com/kaplanelad/english-to-cron"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
regex = { version = "1.10.6", default-features = false, features = [
|
|
"unicode-case",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
rstest = "0.22.0"
|