Skip to content

Commit

Permalink
remove constraint now that stuff works
Browse files Browse the repository at this point in the history
  • Loading branch information
FerrahWolfeh committed Sep 4, 2023
1 parent 211f66b commit d0f33b1
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 5 deletions.
28 changes: 27 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
{
"type": "lldb",
"request": "launch",
"name": "CBZ pool same dir",
"name": "CBZ pool same dir (precise)",
"cargo": {
"args": [
"build",
Expand All @@ -231,5 +231,31 @@
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "CBZ pool same dir",
"cargo": {
"args": [
"build",
"--bin=imageboard_downloader",
"--package=imageboard_downloader"
],
"filter": {
"name": "imageboard_downloader",
"kind": "bin"
}
},
"args": [
"-i",
"e621",
"--cbz",
"--pool",
"6837",
"-o",
"."
],
"cwd": "${workspaceFolder}"
},
]
}
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["ibdl-common", "ibdl-core", "ibdl-extractors"]
[package]
name = "imageboard_downloader"
authors = ["Ferrah Aiko Wolf <[email protected]>"]
version = "1.5.3"
version = "1.5.4"
edition = "2021"
description = "Cli utility to bulk download images from popular imageboard sites (Boorus) using their APIs"
license = "MIT"
Expand All @@ -20,7 +20,7 @@ include = ["**/*.rs", "Cargo.toml"]
[dependencies]
env_logger = "0.10.0"
spinoff = "0.8.0"
ibdl-core = { version = "1.5.2", path = "./ibdl-core" }
ibdl-core = { version = "1.5.4", path = "./ibdl-core" }
ibdl-extractors = { version = "1.5.0", path = "./ibdl-extractors" }
ibdl-common = { version = "1.4.0", path = "./ibdl-common" }
color-eyre = "0.6.2"
Expand Down
2 changes: 1 addition & 1 deletion ibdl-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibdl-core"
version = "1.5.3"
version = "1.5.4"
edition = "2021"
description = "Main download infrastructure for imageboard_downloader"
license = "MIT"
Expand Down
1 change: 0 additions & 1 deletion ibdl-core/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ pub struct Cli {
value_name = "ID",
conflicts_with("tags"),
conflicts_with("save_file_as_id"),
conflicts_with("output"),
requires("precise_output")
)]
pub pool_id: Option<u32>,
Expand Down

0 comments on commit d0f33b1

Please sign in to comment.