-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
104 lines (92 loc) · 2.06 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[package]
name = "elektron_rs"
version.workspace = true
edition.workspace = true
license.workspace = true
[workspace]
members = [
"src/simulation",
"src/reports",
"src/plotter",
"src/draw",
"src/notebook",
"src/sexp",
"src/sexp_macro",
"src/ngspice",
]
[workspace.package]
version = "0.0.7"
edition = "2021"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
thiserror = "1"
lazy_static = "1"
regex = "1"
ndarray = "0"
log = "0.4"
pyo3 = { version = "0.21" } #, features = ["gil-refs"] }
itertools = "0.12"
rand = "0.8"
yaml-rust = "0.4"
xlsxwriter = "0.6"
colored = "2"
indexmap = "2"
json = "0.12"
cairo-rs = { version = "0.19", features = ["svg", "png", "pdf"] }
png = "0.17"
svg = "0.17"
pdf = "0.9"
poppler-rs = "0.23"
plotters = "0.3"
plotters-svg = "0.3"
anyhow = "1.0"
hound = "3.5"
tectonic = { version="0.15", features = ["external-harfbuzz"] }
uuid = { version = "1.7", features = ["v4", "fast-rng", "macro-diagnostics"] }
fontdue = "0.8"
rust-fontconfig = "0.1"
pangocairo = "0.19"
simplecss = "0.2"
clap = { version = "4.5", features = ["derive"] }
[lib]
name = "elektron"
path = "src/cli/src/lib.rs"
crate-type = ["cdylib"]
# [profile.release-lto]
# inherits = "release"
# lto = true
[dependencies]
sexp = { path = "src/sexp" }
sexp_macro = { path = "src/sexp_macro" }
simulation = { path = "src/simulation" }
reports = { path = "src/reports" }
plotter = { path = "src/plotter" }
draw = { path = "src/draw"}
notebook = { path = "src/notebook" }
ngspice = { path = "src/ngspice" }
log = "0.4"
colored = "2"
thiserror = "1"
lazy_static = "1"
regex = "1"
ndarray = "0"
pyo3 = { version = "0.21" } #, features = ["gil-refs"] }
itertools = "0.12"
rand = "0.8"
yaml-rust = "0.4"
xlsxwriter = "0.6"
indexmap = "2"
comfy-table = "7"
viuer = "0.7"
rust-fuzzy-search = "0.1.1"
tempfile = "3"
env_logger = "0.11"
json = "0.12"
clap = { version = "4.5", features = ["derive"] }
[build-dependencies]
pyo3-build-config = "0.21"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "plotter_benchmark"
harness = false