20 lines
536 B
TOML
20 lines
536 B
TOML
[package]
|
|
name = "be-technical-interview-rust"
|
|
description = "Backend internal interview (rust) October 2024"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Jesús Pérez <jpl@jesusperez.pro>"]
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
regex = "1.10.4"
|
|
chrono = "0.4"
|
|
|
|
# These are to parse and load toml [`Config`] files
|
|
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"] } |