-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
26 lines (22 loc) · 865 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
[package]
name = "sunwalker_box"
version = "0.1.0"
edition = "2021"
authors = ["Alisa Sireneva <[email protected]>"]
license = "Apache-2.0"
description = "Sandbox for sunwalker judge system"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { git = "https://github.com/purplesyringa/anyhow", branch = "optout-backtrace", features = ["no_backtrace"]}
argh = "0.1.9"
crossmist = { version = "1.0", features = ["nightly"] }
nix = { version = "0.27.1", features = ["resource", "sched", "kmod", "ptrace", "signal", "fs", "time", "user", "poll", "event", "process", "mount", "hostname"] }
openat = "0.1.21"
rand = "0.8.5"
miniserde = "0.1"
[patch.crates-io]
libc = { git = "https://github.com/yuki0iq/libc", branch = "libc-0.2" }
[profile.release]
codegen-units = 1
lto = true
panic = "abort"