-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 946 Bytes
/
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
[package]
name = "tapi-rs"
version = "0.1.0"
edition = "2021"
[lib]
name = "tapirs"
[[bin]]
name = "maelstrom"
required-features = ["maelstrom"]
[features]
default = ["maelstrom"]
maelstrom = ["async-maelstrom", "async-trait", "tracing-subscriber"]
[dependencies]
bitcode = { version = "0.4.0", features = ["serde"] }
rand = "0.8.4"
tokio = { version = "1", features = ["full"] }
reqwest = "0.11.18"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures = "0.3.28"
pin-project-lite = "0.2.9"
derive_more = "0.99.17"
async-maelstrom = { version = "0.1.2", optional = true }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", optional = true, features = ["env-filter"]}
async-trait = { version = "0", optional = true }
[dev-dependencies]
pprof = { version = "0.11.1", features = ["flamegraph"] }
tracing-subscriber = {version = "0.3.17", features = ["env-filter"]}
[profile.release]
debug-assertions = true