Skip to content

Commit

Permalink
📌 Add minimum supported rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurlm committed Dec 3, 2023
1 parent 37e4b84 commit 4532f2f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
- run: rustup toolchain install 1.64.0
- uses: Swatinem/rust-cache@v2
- run: rustc --version
- name: Build debug
run: cargo build --verbose
- name: Build release
Expand All @@ -35,11 +37,13 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
- run: rustup toolchain install 1.64.0
- uses: Swatinem/rust-cache@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install --yes libmysqlclient-dev
- run: rustc --version
- name: Run tests
run: cargo test -F build-with-mysql

Expand All @@ -49,11 +53,13 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
- run: rustup toolchain install 1.64.0
- uses: Swatinem/rust-cache@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install --yes libpq-dev
- run: rustc --version
- name: Run tests
run: cargo test -F build-with-postgres

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Quick fix binding for Rust

![CI workflow](https://github.com/arthurlm/quickfix-rs/actions/workflows/ci.yml/badge.svg)
![MSRV](https://img.shields.io/badge/MSRV-1.64.0-blue)
[![dependency status](https://deps.rs/repo/github/arthurlm/quickfix-rs/status.svg)](https://deps.rs/repo/github/arthurlm/quickfix-rs)

This project is an **unofficial** binding between [quickfix](https://github.com/quickfix/quickfix) library and Rust projects.
Expand Down
1 change: 1 addition & 0 deletions quickfix-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ repository = "https://github.com/arthurlm/quickfix-rs"
license = "MIT"
keywords = ["quickfix", "fix-protocol", "finance"]
categories = ["external-ffi-bindings"]
rust-version = "1.64.0"
exclude = ["examples"]

[dependencies]
Expand Down
1 change: 1 addition & 0 deletions quickfix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ repository = "https://github.com/arthurlm/quickfix-rs"
license = "MIT"
keywords = ["quickfix", "fix-protocol", "finance"]
categories = ["api-bindings", "finance"]
rust-version = "1.64.0"

[dependencies]
quickfix-ffi = { path = "../quickfix-ffi", version = "0.1.0" }
Expand Down

0 comments on commit 4532f2f

Please sign in to comment.