-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (29 loc) · 868 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "cfsem"
version = "1.1.0"
edition = "2021"
authors = ["Commonwealth Fusion Systems <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cfs-energy/cfsem-rs"
homepage = "https://github.com/cfs-energy/cfsem-rs"
description = "Quasi-steady electromagnetics including filamentized approximations, Biot-Savart, and Grad-Shafranov."
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nalgebra = "^0.33.0"
rayon = "^1.10.0"
[dev-dependencies]
criterion = "0.5.1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
overflow-checks = true
[[bench]]
name = "linear_filament"
harness = false
[[bench]]
name = "circular_filament"
harness = false
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]