-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (32 loc) · 939 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (32 loc) · 939 Bytes
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
[package]
name = "stitch_core"
version = "0.1.0"
authors = ["Matthew Bowers <mlbowers@mit.edu>", "Theo X. Olausson <theoxo@mit.edu>"]
edition = "2018"
license = "MIT"
description = "A scalable abstraction learning library"
repository = "https://github.com/mlb2251/stitch"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4"
serde_json = {version = "1.0", features = ["preserve_order"]}
clap = { version = "3.1.0", features = ["derive"]}
serde = "1"
itertools = "0.10.3"
rand = "0.8.4"
parking_lot = "0.12.0"
colorful = "0.2.1"
rustc-hash = "1.1.0"
# lambdas = "0.2.0"
lambdas = { git = "https://github.com/mlb2251/lambdas", rev = "2c9bfd0"}
test-case = "3.3.1"
rand_chacha = "0.9.0"
shlex = "1.3.0"
# [patch.crates-io]
# lambdas = { path = "../lambdas"}
# enable for flamegraphs
# [profile.release]
# debug = true
[profile.test]
opt-level = 3
debug = true