-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.bwrc.toml
54 lines (49 loc) · 2.19 KB
/
Cargo.bwrc.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
[package]
name = "sram22"
version = "0.2.0"
edition = "2021"
authors = ["Rahul Kumar <[email protected]>", "Rohan Kumar <[email protected]>"]
description = "A configurable SRAM generator"
repository = "https://github.com/rahulk29/sram22"
license = "BSD-3-Clause"
[dependencies]
derive_builder = "0.12"
grid = "0.9"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_repr = "0.1"
serde_json = "1"
toml = "0.5"
log = "0.4"
indicatif = "0.17"
clap = { version = "4", features = ["derive"] }
itertools = "0.10"
psfparser = { git = "https://github.com/rahulk29/psfparser.git", branch = "master" }
arcstr = "1"
anyhow = "1"
calibre = { git = "ssh://[email protected]/rahulkumar/calibre.git", branch = "master", optional = true }
abstract_lef = { git = "ssh://[email protected]/rahulkumar/abstract_lef.git", branch = "master", optional = true }
liberate_mx = { git = "ssh://[email protected]/rahulkumar/liberate-mx.git", branch = "master", optional = true }
tera = "1"
lazy_static = "1"
colored = "2"
approx = "0.5"
lef21 = { git = "https://github.com/dan-fritchman/Layout21.git", branch = "main" }
plotters = "0.3.7"
# Substrate dependencies
substrate = { git = "https://github.com/substrate-labs/substrate", branch = "main" }
subgeom = { git = "https://github.com/substrate-labs/substrate", branch = "main" }
codegen = { git = "https://github.com/substrate-labs/substrate", branch = "main" }
sky130_open_pdk = { git = "https://github.com/substrate-labs/substrate", branch = "main" }
ngspice = { git = "https://github.com/substrate-labs/substrate", branch = "main" }
sky130_commercial_pdk = { git = "https://github.com/substrate-labs/substrate", branch = "main", optional = true }
spectre = { git = "https://github.com/substrate-labs/substrate", branch = "main", optional = true }
sub_calibre = { git = "ssh://[email protected]/rohankumar/substrate_mentor_plugins.git", branch = "main", optional = true }
rust_decimal = "1"
rust_decimal_macros = "1"
[dev-dependencies]
tempfile = "3"
paste = "1"
[features]
commercial = ["dep:calibre", "dep:abstract_lef", "dep:liberate_mx", "dep:spectre", "dep:sky130_commercial_pdk", "dep:sub_calibre"]
default = ["commercial"]