-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (33 loc) · 852 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
37
38
39
40
[package]
name = "nonlinear_schrodinger"
version = "0.1.0"
edition = "2021"
authors = ["Florent CLM Michel <[email protected]>"]
[[example]]
name = "1d_harmonic_gaussian"
path = "src/examples/1d_harmonic_gaussian.rs"
crate-type = ["bin"]
[[example]]
name = "1d_harmonic_imag"
path = "src/examples/1d_harmonic_imag.rs"
crate-type = ["bin"]
[[example]]
name = "2d_harmonic_gaussian"
path = "src/examples/2d_harmonic_gaussian.rs"
crate-type = ["bin"]
[[example]]
name = "2d_harmonic_two_gaussians"
path = "src/examples/2d_harmonic_two_gaussians.rs"
crate-type = ["bin"]
[[example]]
name = "1d_gaussian_neg_g"
path = "src/examples/1d_gaussian_neg_g.rs"
crate-type = ["bin"]
[features]
default = ["ft_cpu"]
ft_cpu = []
multithread_ft = ["rayon"]
opencl = []
[dependencies]
rayon = { version = "1.5", optional = true }
plotters = "0.3"