@@ -15,6 +15,7 @@ categories = ["development-tools", "command-line-utilities"]
1515[dependencies ]
1616anyhow = " 1.0.89"
1717clap = { version = " 4.5.20" , features = [" derive" ] }
18+ clap_complete = " ^4.5"
1819copypasta = " 0.8.2"
1920dirs = " 5.0.1"
2021human-panic = " 2.0.2"
@@ -25,7 +26,10 @@ ratatui = "0.28.1"
2526serde = { version = " 1.0.210" , features = [" default" , " derive" ] }
2627serde_json = " 1.0.128"
2728tui-input = " 0.10.1"
28- ureq = { version = " 2.10.1" , features = [" gzip" , " native-tls" ], default-features = false }
29+ ureq = { version = " 2.10.1" , features = [
30+ " gzip" ,
31+ " native-tls" ,
32+ ], default-features = false }
2933url = " 2.5.2"
3034yansi = " 1.0.1"
3135
@@ -53,16 +57,16 @@ pkg-url = "{ repo }/releases/download/v{ version }/{ name }-macos-arm64"
5357
5458[package .metadata .cross .target .x86_64-unknown-linux-gnu ]
5559pre-build = [
56- " dpkg --add-architecture $CROSS_DEB_ARCH" ,
57- " apt-get update && apt-get --assume-yes install pkg-config libssl-dev:$CROSS_DEB_ARCH"
60+ " dpkg --add-architecture $CROSS_DEB_ARCH" ,
61+ " apt-get update && apt-get --assume-yes install pkg-config libssl-dev:$CROSS_DEB_ARCH" ,
5862]
5963[package .metadata .cross .target .i686-unknown-linux-gnu ]
6064pre-build = [
61- " dpkg --add-architecture $CROSS_DEB_ARCH" ,
62- " apt-get update && apt-get --assume-yes install pkg-config libssl-dev:$CROSS_DEB_ARCH"
65+ " dpkg --add-architecture $CROSS_DEB_ARCH" ,
66+ " apt-get update && apt-get --assume-yes install pkg-config libssl-dev:$CROSS_DEB_ARCH" ,
6367]
6468[package .metadata .cross .target .aarch64-unknown-linux-gnu ]
6569pre-build = [
66- " dpkg --add-architecture $CROSS_DEB_ARCH" ,
67- " apt-get update && apt-get --assume-yes install pkg-config libssl-dev:$CROSS_DEB_ARCH"
70+ " dpkg --add-architecture $CROSS_DEB_ARCH" ,
71+ " apt-get update && apt-get --assume-yes install pkg-config libssl-dev:$CROSS_DEB_ARCH" ,
6872]
0 commit comments