-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 1.13 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
30
31
32
33
34
35
36
37
38
39
[package]
name = "jobshell"
version = "2.0.2"
edition = "2021"
authors = ["Mac fitton <macfittondev@gmail.com>"]
description = "A CLI tool for job searching and scraping job boards"
license = "MIT"
repository = "https://github.com/angelplusultra/job-shell"
readme = "README.md"
keywords = ["cli", "job-search", "automation"]
categories = ["command-line-utilities"]
default-run = "jobshell"
[[bin]]
name = "jobshell"
path = "src/main.rs"
[dependencies]
chrono = "0.4.38"
clap = { version = "4.5.21", features = ["derive"] }
clipboard = "0.5.0"
colored = "2.1.0"
dialoguer = {version = "0.11.0", features = ["fuzzy-select"]}
directories = "5.0.1"
dotenv = "0.15.0"
figlet-rs = "0.1.5"
headless_chrome = "1.0.15"
indicatif = "0.17.9"
reqwest = { version = "0.11", features = ["json"]}
scraper = "0.21.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = "0.26.3"
strum_macros = "0.26.4"
tabled = "0.16.0"
tokio = { version = "1.0", features = ["full"] }
tokio-cron-scheduler = { version = "0.13.0", features = ["english"]}
uuid = { version = "1.11", features = ["serde"] } # Enable serde integration for UUID
webbrowser = "1.0.2"