Skip to content

Commit

Permalink
Initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenengler committed Nov 23, 2020
0 parents commit 5252b7a
Show file tree
Hide file tree
Showing 6 changed files with 796 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.swp
/target
371 changes: 371 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[package]
name = "socksns"
version = "0.1.0"
license = "MIT"
authors = ["Steven Engler"]
edition = "2018"
repository = "https://github.com/stevenengler/socksns"
description = "A tool for running an application in an isolated network namespace, with external network access only through a SOCKS proxy."

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
log = "0.4.11"
env_logger = "0.8.2"
unshare = "0.5.1"
users = "0.11.0"
nix = "0.19.0"
passfd = "0.1.3"
tokio = { version = "0.3.4", features = ["net", "rt", "io-util", "macros", "sync"] }
Loading

0 comments on commit 5252b7a

Please sign in to comment.