init port

This commit is contained in:
Johan Lundberg 2026-06-25 16:59:46 +02:00
commit f825488351
No known key found for this signature in database
GPG key ID: A6C152738D03C7D1
17 changed files with 3513 additions and 0 deletions

26
Cargo.toml Normal file
View file

@ -0,0 +1,26 @@
[package]
name = "scriptherder"
version = "0.1.0"
edition = "2021"
[lib]
name = "scriptherder"
path = "src/lib.rs"
[[bin]]
name = "scriptherder"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
regex = "1"
rust-ini = "0.21"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
syslog = "6"
log = "0.4"
env_logger = "0.11"
libc = "0.2"
thiserror = "2"
rand = "0.8"