Skip to content

Commit ca35d40

Browse files
committed
Align FEFF input parser with Fortran and prepare v0.1.7
1 parent 46aa12f commit ca35d40

7 files changed

Lines changed: 3965 additions & 312 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ exclude = ["crates/feff10-python"]
55

66
[workspace.package]
77
edition = "2024"
8-
version = "0.1.6"
8+
version = "0.1.7"
99
license = "MIT OR Apache-2.0"
1010
repository = "https://github.com/Ameyanagi/feff10-rs"
1111
homepage = "https://github.com/Ameyanagi/feff10-rs"

crates/feff10-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ path = "src/main.rs"
1818
prebuilt = ["feff10/prebuilt"]
1919

2020
[dependencies]
21-
feff10 = { path = "../feff10", version = "0.1.6" }
22-
feff10-sys = { path = "../feff10-sys", version = "0.1.6" }
21+
feff10 = { path = "../feff10", version = "0.1.7" }
22+
feff10-sys = { path = "../feff10-sys", version = "0.1.7" }
2323
clap = { version = "4", features = ["derive"] }
2424
indicatif = "0.17"
2525
serde = { version = "1", features = ["derive"] }

crates/feff10-python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "feff10-python"
33
edition = "2024"
4-
version = "0.1.6"
4+
version = "0.1.7"
55
description = "Python bindings for FEFF10 via PyO3"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/Ameyanagi/feff10-rs"
@@ -16,5 +16,5 @@ crate-type = ["cdylib"]
1616
prebuilt = ["feff10/prebuilt"]
1717

1818
[dependencies]
19-
feff10 = { path = "../feff10", version = "0.1.6" }
19+
feff10 = { path = "../feff10", version = "0.1.7" }
2020
pyo3 = { version = "0.28", features = ["extension-module", "abi3-py39"] }

crates/feff10/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ readme = "README.md"
1414
prebuilt = ["feff10-sys/prebuilt"]
1515

1616
[dependencies]
17-
feff10-sys = { path = "../feff10-sys", version = "0.1.6" }
17+
feff10-sys = { path = "../feff10-sys", version = "0.1.7" }
1818
tempfile = "3"
1919
which = "7"
2020

0 commit comments

Comments
 (0)