-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (31 loc) · 912 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
[package]
name = "carapace"
version = "0.2.1-dev"
authors = ["Nugine <[email protected]>"]
edition = "2018"
readme = "README.md"
license = "MIT"
description = "A code runner for online judge"
repository = "https://github.com/ThinkSpiritLab/carapace"
keywords = ["sandbox"]
categories = ["command-line-utilities"]
[dependencies]
aligned-utils = "1.0.2"
anyhow = "1.0.38"
clap = "=3.0.0-beta.4" # FIXME: waiting for clap v3
dotenv = "0.15.0"
libc = "0.2.88"
memchr = "2.3.4"
nix = "0.22.1"
once_cell = "1.7.2"
path-absolutize = { version = "3.0.7", features = ["unsafe_cache"] }
rand = "0.8.3"
rlimit = "0.6.2"
scopeguard = "1.1.0"
seccomp-sys = "0.1.3"
serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.64"
tokio = { version = "1.3.0", default-features = false, features = ["time", "macros", "rt", "rt-multi-thread"]}
tracing = "0.1.25"
tracing-error = "0.1.2"
tracing-subscriber = "0.2.16"