-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (33 loc) · 1006 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 = "eval-stack"
version = "0.3.3"
edition = "2021"
authors = ["苏向夜 <[email protected]>"]
readme = "README.md"
license = "AGPL-3.0"
repository = "https://github.com/swpu-acm/eval-stack"
homepage = "https://github.com/swpu-acm/eval-stack"
description = "Extremely fast async online judge evaluation system for ACM/OI contests."
keywords = ["oj", "online-judge", "acm", "oi"]
[dependencies]
anyhow = "1.0.92"
libc = "0.2.161"
tokio = { version = "1.41.0", features = ["full"] }
seccompiler = "0.4.0"
which = "7.0.0"
serde = { version = "1.0.215", features = ["derive"], optional = true }
surrealdb = { version = "2.1.2", optional = true }
chrono = { version = "0.4.38", optional = true }
futures = { version = "0.3.31", optional = true }
[features]
default = ["engine"]
engine = ["surrealdb", "serde", "chrono", "futures"]
serde = ["dep:serde"]
[profile.release]
lto = "fat"
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
panic = "abort"
codegen-units = 1