Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ABouttefeux committed Jun 19, 2022
1 parent 2996af9 commit af1f7e8
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 13 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

# v0.2.1

- add const on multiple functions where applicable
- update nalgebra to 0.31.0
- update num-traits to 0.2.15
- update rayon to 1.5.3


# v0.2.0

First release
Expand Down
11 changes: 6 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lattice-qcd-rs"
version = "0.2.0"
version = "0.2.1"
authors = ["Aliénore Bouttefeux <[email protected]>"]
edition = "2021"
readme = "README.md"
Expand All @@ -10,6 +10,7 @@ description = "Lattice QCD simulation"
keywords = ["QCD", "Lattice", "Monte-Carlo", "chromodynamics"]
publish = true
license = "MIT OR Apache-2.0"
rust-version = "1.61"

[lib]
path = "src/lib.rs"
Expand All @@ -24,15 +25,15 @@ default = ["serde-serialize"]
members = ["procedural_macro"]

[dependencies]
nalgebra = { version = "0.31", features = ["serde-serialize"] }
nalgebra = { version = "0.31.0", features = ["serde-serialize"] }
approx = "0.5.1"
num-traits = "0.2.14"
num-traits = "0.2.15"
rand = "0.8.5"
rand_distr = "0.4.3"
crossbeam = "0.8.1"
rayon = "1.5.1"
rayon = "1.5.3"
serde = { version = "1.0", features = ["derive"], optional = true }
lattice_qcd_rs-procedural_macro = {path = "procedural_macro", version = "0.2.0"}
lattice_qcd_rs-procedural_macro = {path = "procedural_macro", version = "0.2.1"}

[dev-dependencies]
criterion = "0.3.5"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Check out my other repo [plaquette](https://github.com/ABouttefeux/plaquette), a

## Usage

Add `lattice_qcd_rs = { version = "0.2.0", git = "https://github.com/ABouttefeux/lattice_qcd_rs" }` into your `cargo.toml`.
Add `lattice_qcd_rs = { version = "0.2.1", git = "https://github.com/ABouttefeux/lattice_qcd_rs" }` into your `cargo.toml`.
The set of features are
- `serde-serialize` on by default permit the use of serde on some structure
- `no-overflow-test` usage interns to desable overflow test for coverage.
Expand Down
10 changes: 10 additions & 0 deletions procedural_macro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

# v0.2.1

- update quote to 1.0.19
- update syn to 1.0.98
- update proc-macro2 to 1.0.39

# v0.2.0

First release
8 changes: 4 additions & 4 deletions procedural_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lattice_qcd_rs-procedural_macro"
version = "0.2.0"
version = "0.2.1"
authors = ["Aliénore Bouttefeux <[email protected]>"]
edition = "2021"
description = "Set of procedural macro for the main library lattice_qcd_rs"
Expand All @@ -12,9 +12,9 @@ publish = true
proc-macro = true

[dependencies]
quote = "1.0.17"
syn = "1.0.90"
proc-macro2 = "1.0.36"
quote = "1.0.19"
syn = "1.0.98"
proc-macro2 = "1.0.39"

[dev-dependencies]
version-sync = "0.9.4"
2 changes: 1 addition & 1 deletion procedural_macro/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Procedural macro for lattice_qcd_rs v0.2.0
# Procedural macro for lattice_qcd_rs v0.2.1

![](https://img.shields.io/badge/language-Rust-orange)
![License](https://img.shields.io/badge/license-MIT_OR_Apache--2.0-blue.svg)
Expand Down
2 changes: 1 addition & 1 deletion procedural_macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#![warn(clippy::missing_errors_doc)]
#![warn(missing_docs)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/lattice_qcd_rs-procedural_macro/0.2.0")]
#![doc(html_root_url = "https://docs.rs/lattice_qcd_rs-procedural_macro/0.2.1")]

/// Only contains the version test.
#[cfg(test)]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#![warn(clippy::missing_errors_doc)]
#![warn(missing_docs)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/lattice_qcd_rs/0.2.0")]
#![doc(html_root_url = "https://docs.rs/lattice_qcd_rs/0.2.1")]

extern crate approx;
extern crate crossbeam;
Expand Down

0 comments on commit af1f7e8

Please sign in to comment.