Julien Fastré
b49c08aed3
A new module 'planning_load' has been added to the 'planning' directory, handling workload planning tasks. Updates have also been made to project dependencies in Cargo.lock and Cargo.toml. The added dependencies are necessary for the new functionalities in the 'planning_load' module. Also, a few adjustments were made to allow better access and error handling across packages.
20 lines
543 B
TOML
20 lines
543 B
TOML
[package]
|
|
name = "cl-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.1.13", features = ["derive"] }
|
|
gitlab = "0.1607.0"
|
|
reqwest = "0.11.23"
|
|
serde = { version = "1.0.158", features = ["derive"] }
|
|
toml = "0.7.3"
|
|
url = "2.3.1"
|
|
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }
|
|
simple-home-dir = "0.2.1"
|
|
log = "0.4.17"
|
|
tabled = "0.15.0"
|
|
iso8601 = { version = "0.6.1" , features = ["serde"]}
|