-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
47 lines (40 loc) · 1.16 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]
authors = ["Ben Ruijl <[email protected]>"]
categories = ["science"]
description = "A blazing fast computer algebra system with community enhancements"
edition = "2021"
keywords = ["algebra", "symbolic", "manipulation", "mathematics", "physics"]
license = "MIT"
name = "symbolica"
readme = "Readme.md"
repository = "https://github.com/benruijl/symbolica-community"
rust-version = "1.73"
version = "0.1.0"
[features]
default = ["vakint", "spenso"]
vakint = ["dep:vakint"]
spenso = ["dep:spenso"]
[profile.release]
codegen-units = 1
lto = true
[profile.dev-optim]
inherits = "dev"
opt-level = 3
[[bin]]
name = "stub_gen"
doc = false
[lib]
name = "symbolica_community"
crate-type = ["lib", "cdylib"]
[dependencies]
symbolica = { version = "0.13.0", features = ["python_no_module"] }
pyo3 = { version = "0.22.0", features = ["abi3-py37", "anyhow", "num-complex"] }
anyhow = "*"
vakint = { git = "https://github.com/alphal00p/vakint", branch = "main", optional = true }
spenso = { version = "0.4.1", optional = true, features = ["shadowing"] }
itertools = "0.13.0"
delegate = "0.13.1"
auto_enums = "0.8.6"
thiserror = "1.0.65"
pyo3-stub-gen = "0.6.0"
env_logger = "0.11.5"