Skip to content

Commit

Permalink
chore: update minimum rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
aaneto committed Jul 13, 2024
1 parent 917a193 commit 4106fbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 36 deletions.
34 changes: 1 addition & 33 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,6 @@ name: Tests
on: push

jobs:
windows-test:
runs-on: windows-latest

steps:
- uses: actions/checkout@v1
- uses: hecrj/setup-rust-action@master
with:
rust-version: stable

- name: Build project
run: cargo build --verbose

- name: Test project
run: cargo test --verbose
env:
SERVER_HOSTNAME: localhost

macos-test:
runs-on: macos-latest

steps:
- uses: actions/checkout@v1
- uses: hecrj/setup-rust-action@master
with:
rust-version: stable

- name: Build project
run: cargo build --verbose

- name: Test project
run: cargo test --verbose

linux-test:
runs-on: ubuntu-latest
services:
Expand Down Expand Up @@ -100,7 +68,7 @@ jobs:
- uses: actions/checkout@v1
- uses: hecrj/setup-rust-action@master
with:
rust-version: 1.50.0
rust-version: 1.56.0

- name: Build project
run: cargo build --verbose
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
name = "ftp-client"
version = "0.1.2"
authors = ["Adilson Neto <almeidneto@gmail.com>"]
edition = "2018"
edition = "2021"
readme = "README.md"

keywords = [ "ftp" ]
categories = [ "network-programming" ]
keywords = ["ftp"]
categories = ["network-programming"]
description = "A FTP client library"
repository = "https://github.com/aaneto/ftp-client"
license = "MIT"
Expand Down

0 comments on commit 4106fbb

Please sign in to comment.