termscp 0.10

This commit is contained in:
veeso
2022-10-15 14:01:00 +02:00
parent cd5bb28fb7
commit ae350b4bfa
5 changed files with 13 additions and 7 deletions

View File

@@ -28,7 +28,7 @@
## 0.10.0 ## 0.10.0
Released on ?? Released on 15/10/2022
> ⭐ 500 stars update ⭐ > ⭐ 500 stars update ⭐
> Thank you for supporting termscp and make it reaching 500 stars on Github > Thank you for supporting termscp and make it reaching 500 stars on Github

View File

@@ -50,8 +50,7 @@ open = "3.0.3"
rand = "0.8.5" rand = "0.8.5"
remotefs = "^0.2.0" remotefs = "^0.2.0"
remotefs-aws-s3 = { version = "^0.2.1", default-features = false, features = [ "find", "rustls" ] } remotefs-aws-s3 = { version = "^0.2.1", default-features = false, features = [ "find", "rustls" ] }
remotefs-ftp = { version = "^0.1.2", features = [ "vendored", "native-tls" ] }
remotefs-ssh = { version = "^0.1.2", features = [ "ssh2-vendored" ] }
rpassword = "7.0.0" rpassword = "7.0.0"
self_update = { version = "0.32.0", default-features = false, features = [ "rustls", "archive-tar", "archive-zip", "compression-flate2", "compression-zip-deflate" ] } self_update = { version = "0.32.0", default-features = false, features = [ "rustls", "archive-tar", "archive-zip", "compression-flate2", "compression-zip-deflate" ] }
serde = { version = "^1", features = [ "derive" ] } serde = { version = "^1", features = [ "derive" ] }
@@ -76,8 +75,15 @@ default = [ "with-keyring" ]
github-actions = [ ] github-actions = [ ]
with-keyring = [ "keyring" ] with-keyring = [ "keyring" ]
[target."cfg(target_family = \"windows\")"]
[target."cfg(target_family = \"windows\")".dependencies]
remotefs-ftp = { version = "^0.1.2", features = [ "native-tls" ] }
remotefs-ssh = "^0.1.2"
[target."cfg(target_family = \"unix\")"] [target."cfg(target_family = \"unix\")"]
[target."cfg(target_family = \"unix\")".dependencies] [target."cfg(target_family = \"unix\")".dependencies]
remotefs-ftp = { version = "^0.1.2", features = [ "vendored", "native-tls" ] }
remotefs-ssh = { version = "^0.1.2", features = [ "ssh2-vendored" ] }
users = "0.11.0" users = "0.11.0"
[profile.dev] [profile.dev]

View File

@@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2021 Christian Visintin Copyright (c) 2020-2022 Christian Visintin
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@@ -63,7 +63,7 @@
</p> </p>
<p align="center">Developed by <a href="https://veeso.github.io/" target="_blank">@veeso</a></p> <p align="center">Developed by <a href="https://veeso.github.io/" target="_blank">@veeso</a></p>
<p align="center">Current version: 0.10.0 (09/06/2022)</p> <p align="center">Current version: 0.10.0 (15/10/2022)</p>
<p align="center"> <p align="center">
<a href="https://opensource.org/licenses/MIT" <a href="https://opensource.org/licenses/MIT"

View File

@@ -14,7 +14,7 @@ cargo build --release
# Make zip # Make zip
$zipName = "termscp-v$version-x86_64-pc-windows-msvc.zip" $zipName = "termscp-v$version-x86_64-pc-windows-msvc.zip"
Set-Location .\target\release\ Set-Location .\target\release\
Compress-Archive termscp.exe $zipName Compress-Archive -Force termscp.exe $zipName
# Get checksum # Get checksum
checksum.exe -t sha256 $zipName Get-FileHash $zipName
Move-Item $zipName .\..\..\dist\pkgs\windows\$zipName Move-Item $zipName .\..\..\dist\pkgs\windows\$zipName