-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 1.03 KB
/
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
[package]
name = "skeld"
version = "0.3.0"
edition = "2021"
rust-version = "1.81"
authors = ["hacrvlq <[email protected]"]
description = "a tui tool for opening projects in a restricted sandbox to prevent supply chain attacks such as typosquatting"
keywords = ["sandboxing", "supply-chain", "security", "project-launcher", "tui"]
categories = ["command-line-interface"]
readme = "docs/README.md"
repository = "https://github.com/hacrvlq/skeld"
documentation = "https://github.com/hacrvlq/skeld/blob/v0.3.0/docs/DOCS.md"
license = "MIT"
[profile.release]
lto = true
codegen-units = 1
strip = true
[dependencies]
crossterm = { version = "0.28.1", default-features = false, features = ["bracketed-paste", "events"] }
libc = "0.2.155"
seccompiler = "0.4.0"
nix = { version = "0.29.0", features = ["process", "fs"] }
toml-span = { version = "0.3.0", features = ["reporting"] }
codespan-reporting = "0.11.1"
derive_more = { version = "1.0.0", features = ["from", "display"] }
clap = { version = "4.5.13", features = ["derive"] }
unicode-width = "0.1.14"