be-technical-interview-rust/Cargo.toml

20 lines
536 B
TOML
Raw Normal View History

2024-10-17 14:05:05 +00:00
[package]
name = "be-technical-interview-rust"
2024-10-21 02:20:55 +00:00
description = "Backend internal interview (rust) October 2024"
2024-10-17 14:05:05 +00:00
version = "0.1.0"
edition = "2021"
2024-10-21 02:20:55 +00:00
authors = ["Jesús Pérez <jpl@jesusperez.pro>"]
license = "MIT OR Apache-2.0"
publish = false
2024-10-17 14:05:05 +00:00
[dependencies]
regex = "1.10.4"
chrono = "0.4"
2024-10-21 02:20:55 +00:00
2024-10-21 04:08:22 +00:00
# These are to parse and load toml [`Config`] files
2024-10-21 02:20:55 +00:00
serde = { version = "1.0.210", features = ["derive"] }
serde_derive = "1.0.210"
toml = "0.8.19"
# This is for command line options [`Cli`]
clap = {version = "4.5.20", features = [ "derive"] }