-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (27 loc) · 811 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
[package]
name = "phasor"
version = "2.1.0"
edition = "2021"
authors = ["Bruno Dutra <brunocodutra@gmail.com>"]
description= "Complex numbers done right"
repository = "https://github.com/brunocodutra/phasor.js.git"
license = "MIT"
readme = "README.md"
keywords = ["complex", "polar", "phasor", "numeric"]
categories = ["mathematics"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
approx = "0.5.0"
[dev-dependencies]
proptest = { version = "1.2.0", default-features = false, features = ["std"] }
test-strategy = "0.3.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2.68"
wee_alloc = "0.4.5"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
getrandom = { version = "0.2.2", features = ["js"] }
wasm-bindgen-test = "0.3.18"
[profile.release]
opt-level = "s"
lto = true