-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (45 loc) · 1.56 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (45 loc) · 1.56 KB
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
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "mantaray"
version = "0.2.0"
authors = [
"Bryce Irving <bryceirving@mines.edu>",
"Guilherme Castelao <guilherme@castelao.net>",
"Nicholas Pizzo <nicholas.pizzo@uri.edu>",
"Bia Villas Boas <villasboas@mines.edu>",
]
edition = "2021"
rust-version = "1.76.0"
description = "Ray-tracing solver for ocean surface gravity waves that integrates the wave ray equations over spatially varying currents and bathymetry."
documentation = "https://docs.rs/mantaray"
readme = "README.md"
homepage = "https://github.com/mines-oceanography/mantaray"
repository = "https://github.com/mines-oceanography/mantaray"
license = "MIT OR Apache-2.0"
keywords = ["oceanography", "ray-tracing", "waves", "ocean"]
categories = ["science", "simulation", "mathematics"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "mantaray"
crate-type = ["cdylib", "lib"]
[dependencies]
derive_builder = "0.20.0"
libc = { version = "0.2.174", optional = true }
ndarray = { version = "0.16.1", features = ["rayon"] }
netcdf3 = "0.5.2"
netcdf = {version = "=0.11.0", features = ["static", "ndarray"]}
netcdf-src = {version = "=0.4.1" }
netcdf-sys = {version = "=0.8.1" }
ode_solvers = "0.6.1"
pyo3 = { version = "0.27.2", features = ["extension-module"] }
rayon = "1.10.0"
serde_json = "1.0.141"
serde = {version="1.0", features=["derive"]}
thiserror = "2.0.12"
tracing = "0.1.41"
[dev-dependencies]
tempfile = "3.20.0"
[build-dependencies]
cbindgen = { version = "0.29.2", optional = true }
pyo3-build-config = "0.27.2"
[features]
capi = ["libc"]