-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(actions): 📦️ add packaging stuff with Lintian
- Loading branch information
1 parent
df79a7c
commit 23279fb
Showing
6 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ authors.workspace = true | |
edition = "2021" | ||
license.workspace = true | ||
rust-version.workspace = true | ||
description = "An online judge sandbox server in Rust." | ||
description = "online judge sandbox server in Rust" | ||
|
||
[package.metadata.deb] | ||
assets = [ | ||
|
@@ -63,14 +63,17 @@ assets = [ | |
], | ||
] | ||
copyright = "2023-2024 NJUPT-SAST" | ||
changelog = "debian/changelog" | ||
features = ["default"] | ||
conf-files = ["/etc/rsjudge/server.toml", "/etc/rsjudge/executors.toml"] | ||
extended-description = "An online judge sandbox server in Rust, inspired by go-judge, for SAST OJ." | ||
maintainer = "Xiaoqing Xuan <[email protected]>" | ||
maintainer-scripts = "debian/" | ||
depends = "$auto, libc6, libgcc-s1, libstdc++6, libssl1.1, libzstd1, libzstd-dev" | ||
depends = "$auto, adduser, libc6, libgcc-s1, libstdc++6, libssl1.1, libzstd1, libzstd-dev" | ||
recommends = "gcc, g++, python3" | ||
suggests = "pypy3" | ||
section = "net" | ||
systemd-units = { enable = false } | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
# Workspace dependencies | ||
|
@@ -86,14 +89,13 @@ caps = "0.5.5" | |
clap = { version = "4.5.3", features = ["derive"] } | ||
env_logger = "0.11.3" | ||
log = "0.4.21" | ||
serde = { version = "1.0.197", features = ["derive"] } | ||
tokio = { version = "1.36.0", features = ["fs", "rt-multi-thread", "macros"] } | ||
toml = "0.8.11" | ||
toml = "0.8.12" | ||
|
||
# Unused for now: | ||
# cgroups = "0.1.0" | ||
# duct = "0.13.7" | ||
# nix = { version = "0.27.1", features = ["fs"] } | ||
# serde = { version = "1.0.197", features = ["derive"] } | ||
# strfmt = "0.2.4" | ||
# uzers = "0.11.3" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
rsjudge (0.1.0-1) UNRELEASED; urgency=low | ||
|
||
* Initial release | ||
|
||
-- Xiaoqing Xuan <[email protected]> Tue, 19 Mar 2024 03:56:24 +0800 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#Type Path Mode User Group Age Argument | ||
d /var/lib/rsjudge-supervisor 0700 rsjudge-supervisor rsjudge-supervisor - - | ||
d /var/log/rsjudge-supervisor 0755 rsjudge-supervisor rsjudge-supervisor - - | ||
d /var/lib/rsjudge-builder 0700 rsjudge-builder rsjudge-builder - - | ||
d /var/lib/rsjudge-runner 0700 rsjudge-runner rsjudge-runner - - |