Skip to content

Commit

Permalink
Remove unused linkup features (#98)
Browse files Browse the repository at this point in the history
We no longer have reqwest / worker special features in the `linkup`
package - everything is hyper/http
  • Loading branch information
ostenbom authored Jun 5, 2024
1 parent 25234c1 commit 4ed1002
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 372 deletions.
177 changes: 37 additions & 140 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions linkup-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ colored = "2"
ctrlc = { version = "3.4", features = ["termination"] }
daemonize = "0.5"
hickory-resolver = "0.24.0"
linkup = { path = "../linkup", features = ["reqwest"] }
linkup = { path = "../linkup" }
linkup-local-server = { path = "../local-server" }
log = "0.4"
nix = { version = "0.29", features = ["signal"] }
Expand All @@ -29,5 +29,11 @@ serde_json = "1"
serde_yaml = "0.9"
thiserror = "1"
url = { version = "2.5", features = ["serde"] }
mockall = "0.12.1"
base64 = "0.22.1"

[dev-dependencies]
mockall = "0.12.1"

# Optimise the cli for size
[profile.release]
opt-level = "s"
Loading

0 comments on commit 4ed1002

Please sign in to comment.