-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
43 lines (40 loc) · 1.09 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
[package]
name = "trane"
version = "0.22.0"
edition = "2021"
description = "An automated system for learning complex skills"
license = "AGPL-3.0"
readme = "README.md"
repository = "https://github.com/trane-project/trane"
[lib]
name = "trane"
[dependencies]
anyhow = "1.0.86"
chrono = { version = "0.4.38", features = ["serde"] }
derive_builder = "0.20.0"
fs_extra = "1.3.0"
git2 = "0.19.0"
hex = "0.4.3"
indoc = "2.0.5"
lazy_static = "1.5.0"
mantra-miner = "0.1.1"
parking_lot = { version = "0.12.3", features = ["hardware-lock-elision"] }
r2d2 = "0.8.10"
r2d2_sqlite = "0.24.0"
rand = "0.8.5"
rayon = "1.10.0"
rusqlite = { version = "0.31.0", features = ["bundled"] }
rusqlite_migration = "1.2.0"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
sha1 = "0.10.6"
strum = { version = "0.26.3", features = ["derive"] }
tantivy = "0.22.0"
tempfile = "3.10.1"
thiserror = "1.0.63"
ts-rs = {version = "9.0.1", features = ["chrono-impl", "no-serde-warnings", "serde-compat"]}
url = "2.5.2"
ustr = { version = "1.0.0", features = ["serde"] }
walkdir = "2.5.0"
[profile.bench]
debug = true