-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (33 loc) · 1.13 KB
/
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
[package]
name = "kessler"
version = "0.1.4"
edition = "2021"
license = "MIT"
authors = ["Reece Humphreys"]
keywords = ["kessler", "space", "simulation", "fragmentation"]
readme = "README.md"
repository = "https://github.com/reecehumphreys/kessler/"
description = """
Kessler is a library for simulating fragmentation events in low Earth orbit.
"""
[dependencies]
ndarray = { version = "0.15.6", features = ["rayon", "serde"] }
ndarray-rand = "0.13.0"
rand = "0.8.5"
rand_distr = "0.4.3"
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.4"
wasm-bindgen = { version = "0.2.90", features = ["serde"]}
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
blas-src = { version = "0.8", features = ["openblas"] }
ndarray-linalg = "0.14"
openblas-src = { version = "0.10", features = ["cblas", "system"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
js-sys = "0.3.67"
getrandom = { version = "0.2", features = ["js"] }
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
strip = true # Strip symbols from the binary
lto = true # Enable link-time optimizations
codegen-units = 1 # Maximize size reduction optimizations