Julien Fastré
9f544c66c2
Added the "open" crate to Cargo.toml and corresponding dependencies to Cargo.lock. Updated the code to automatically open the newly created work package in the browser and handle potential failure cases gracefully.
19 lines
486 B
TOML
19 lines
486 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"
|
|
open = "5.3.1"
|