-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Require rustc v1.74 to build the code
- Loading branch information
Showing
16 changed files
with
33 additions
and
43 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ version = "0.1.0" | |
authors = ["Luthaf <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
rust-version = "1.65" | ||
rust-version = "1.74" | ||
|
||
[[bin]] | ||
name = "rascaline-json-schema" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "rascaline-c-api" | |
version = "0.1.0" | ||
authors = ["Luthaf <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.65" | ||
rust-version = "1.74" | ||
|
||
[lib] | ||
# when https://github.com/rust-lang/cargo/pull/8789 lands, use it here! | ||
|
@@ -18,25 +18,21 @@ chemfiles = ["rascaline/chemfiles"] | |
|
||
[dependencies] | ||
rascaline = {path = "../rascaline", version = "0.1.0", default-features = false} | ||
metatensor = "0.1" | ||
metatensor = "0.2" | ||
|
||
ndarray = "0.15" | ||
ndarray = "0.16" | ||
log = { version = "0.4", features = ["std"] } | ||
once_cell = "1" | ||
time-graph = {version = "0.3.0", features = ["table", "json"]} | ||
libc = "0.2" | ||
|
||
[build-dependencies] | ||
cbindgen = { version = "0.26", default-features = false } | ||
cbindgen = { version = "0.27", default-features = false } | ||
fs_extra = "1" | ||
metatensor = "0.1" | ||
metatensor = "0.2" | ||
|
||
[dev-dependencies] | ||
which = "5" | ||
|
||
# This is the last version supporting rustc 1.65 | ||
home = "=0.5.5" | ||
|
||
|
||
[lints.rust] | ||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin)'] } |
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,3 +1,5 @@ | ||
#![allow(clippy::field_reassign_with_default)] | ||
|
||
use std::path::PathBuf; | ||
|
||
fn main() { | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "rascaline" | |
version = "0.1.0" | ||
authors = ["Luthaf <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.65" | ||
rust-version = "1.74" | ||
|
||
[lib] | ||
bench = false | ||
|
@@ -36,9 +36,9 @@ name = "soap-power-spectrum" | |
harness = false | ||
|
||
[dependencies] | ||
metatensor = {version = "0.1.6", features = ["rayon"]} | ||
metatensor = {version = "0.2", features = ["rayon"]} | ||
|
||
ndarray = {version = "0.15", features = ["approx-0_5", "rayon", "serde"]} | ||
ndarray = {version = "0.16", features = ["rayon", "serde", "approx"]} | ||
num-traits = "0.2" | ||
rayon = "1.5" | ||
|
||
|
@@ -59,11 +59,7 @@ approx = "0.5" | |
[dev-dependencies] | ||
criterion = "0.5" | ||
|
||
# These are the last versions supporting rustc 1.65 | ||
clap = "=4.2.1" | ||
half = "=2.2.1" | ||
|
||
glob = "0.3" | ||
ndarray-npy = "0.8" | ||
ndarray-npy = "0.9" | ||
flate2 = "1.0.20" | ||
time-graph = {version = "0.3.0", features = ["table", "json"]} |
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
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
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