-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 1 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
[package]
name = "lgp"
version = "1.0.0"
edition = "2021"
authors = ["Urmzd Mukhammadnaim; [email protected]"]
[dependencies]
csv = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simd-json = "0.7"
tokio = { version = "1.18", features = ["full", "macros"] }
rand = "0.8.5"
rand_xoshiro = "0.6"
strum = { version = "0.24", features = ["derive"] }
strum_macros = "0.24"
lazy_static = "1.4"
derivative = "2.2"
derive_more = { version = "0.99" }
itertools = "0.10"
tracing = {version = "0.1", default-features=false }
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", default-features=false, features = ["env-filter", "fmt", "json", "std"] }
gym-rs = { git = "https://github.com/urmzd/gym-rs" }
uuid = { version = "1.2.2", features = ["v4", "serde"] }
clap = { version = "4.1.8", features = ["derive"] }
config = "0.13"
derive_builder = "0.12"
reqwest = "0.11"
rayon = "1.7"
glob = "0.3.1"
[dev-dependencies]
criterion = "0.4.0"
[[bench]]
name = "performance_after_training"
harness = false