forked from At0micBee/scilib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (18 loc) · 667 Bytes
/
Cargo.toml
File metadata and controls
24 lines (18 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "scilib"
description = "A scientific library for the Rust programming language."
authors = ["Hugo G. 'AtomicBee' Vivien <hugo.vivien@pm.me>"]
categories = ["science", "mathematics"]
keywords = ["physics", "bessel", "fft", "coordinates", "quantum"]
version = "0.4.3"
repository = "https://github.com/At0micBee/scilib"
documentation = "https://docs.rs/scilib/"
readme = "README.md"
license = "GPL-3.0"
edition = "2021"
##########
[profile.test]
opt-level = 3 # Some functions are costly, might as well go faster
# Using latex in the docs to display formulas
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]