Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ members = [
"awk",
"calc",
"cc",
"cron",
"datetime",
"dev",
"display",
Expand Down Expand Up @@ -32,7 +33,7 @@ members = [
"users",
"uucp",
"xform",
"i18n"
"i18n",
]

[workspace.package]
Expand All @@ -44,11 +45,12 @@ rust-version = "1.84.0"
[workspace.dependencies]
clap = { version = "4", default-features = false, features = ["std", "derive", "help", "usage", "error-context", "cargo"] }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
chrono-tz = "0.10.0"
libc = "0.2"
regex = "1.10"
gettext-rs = { path = "./gettext-rs" }
errno = "0.3"
chrono-tz = "0.10"
tempfile = "3.14"

[workspace.lints]

6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ Because it is a FAQ, the major differences between this project and uutils are:
- [x] admin (SCCS)
- [x] ar (Development)
- [x] asa
- [x] at (cron cat.)
- [x] awk
- [x] basename
- [x] bc
Expand All @@ -69,6 +70,7 @@ Because it is a FAQ, the major differences between this project and uutils are:
- [x] comm
- [x] compress (compress cat.)
- [x] cp
- [x] crontab (cron cat.)
- [x] csplit
- [x] cut
- [x] delta (SCCS)
Expand Down Expand Up @@ -193,10 +195,6 @@ Because it is a FAQ, the major differences between this project and uutils are:

## Stage 0 - Not started

### Cron category
- [ ] at (cron cat.)
- [ ] crontab (cron cat.)

### Development category
- [ ] cflow (Development)
- [ ] ctags (Development)
Expand Down
33 changes: 33 additions & 0 deletions cron/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[package]
name = "posixutils-cron"
version = "0.1.0"
edition = "2021"

[dependencies]
gettext-rs = { workspace = true }
plib = { path = "../plib" }
clap = { workspace = true }
libc = { workspace = true }
chrono = { workspace = true }
chrono-tz = { workspace = true }
tempfile = { workspace = true }

[[bin]]
name = "at"
path = "./at.rs"

[[bin]]
name = "batch"
path = "./batch.rs"

[[bin]]
name = "crontab"
path = "./crontab.rs"

[[bin]]
name = "crond"
path = "./crond.rs"

[lib]
name = "cron"
path = "./lib.rs"
Loading