refactor!: Moved CLI to inner package
- Increased version to 0.3.0 - Repository now is a Cargo workspace - Added squad-quest-cli package - Removed CLI-specific dependencies from main crate - Removed bin target from main package
This commit is contained in:
parent
5d6aa0422d
commit
47f55105dd
5 changed files with 37 additions and 7 deletions
13
cli/Cargo.toml
Normal file
13
cli/Cargo.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
[package]
|
||||
name = "squad-quest-cli"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
repository.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
chrono = "0.4.42"
|
||||
clap = { version = "4.5.53", features = ["derive"] }
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
squad-quest = { version = "0.3.0", path = ".." }
|
||||
toml = "0.9.8"
|
||||
Loading…
Add table
Add a link
Reference in a new issue