-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (39 loc) · 1.39 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
39
40
41
42
43
44
45
46
47
[package]
name = "rooc"
authors = ["Specy <specy.dev@gmail.com>"]
homepage = "https://rooc.specy.app"
repository = "https://github.com/specy/rooc"
documentation = "https://rooc.specy.app/docs/rooc"
description = "A modeling language to write and solve linear optimization models"
keywords = ["optimization", "DSL", "solver", "mathematics", "linear-programming"]
categories = ["mathematics", "algorithms", "science", "api-bindings", "data-structures"]
version = "0.1.9"
license = "GPL-3.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
serde = { version = "1.0.214", features = ["derive"] }
num-rational = "0.4.2"
num-traits = "0.2.19"
term-table = "1.4.0"
pest = { version = "2.7.14" }
pest_derive = { version = "2.7.14", features = ["grammar-extras"] }
lazy_static = "1.5.0"
copper = "0.1.0"
indexmap = {version = "2.6.0", features = ["serde"] }
good_lp = { version = "1.9.0", features = ["clarabel-wasm"], default-features = false }
microlp = "0.2.5"
[target.'cfg(target_family = "wasm")'.dev-dependencies]
wasm-bindgen-test = "0.3.0"
[target.'cfg(target_family = "wasm")'.dependencies]
js-sys = "0.3.72"
wasm-bindgen = { version = "0.2.83", features = ["serde-serialize"] }
serde-wasm-bindgen = "0.6.5"
console_error_panic_hook = { version = "0.1.1" }
[profile.release]
opt-level = 3
lto = 'fat'
codegen-units = 1
[package.metadata.wasm-pack.profile.dev.wasm-bindgen]
dwarf-debug-info = true