-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2996af9
commit af1f7e8
Showing
8 changed files
with
32 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters