pull/1/head
chris west 4 years ago
parent fc22f88363
commit 5ae4663bf0

7
Cargo.lock generated

@ -52,9 +52,15 @@ dependencies = [
"alphanumeric-sort 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
"content_inspector 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
"gophermap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"shell-escape 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "shell-escape"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "threadpool"
version = "1.7.1"
@ -71,4 +77,5 @@ dependencies = [
"checksum libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558"
"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e"
"checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72"
"checksum shell-escape 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "170a13e64f2a51b77a45702ba77287f5c6829375b04a69cf2222acd17d0cfab9"
"checksum threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865"

@ -1,12 +1,12 @@
[package]
name = "phd"
version = "0.1.7-dev"
authors = ["dvkt <c@dvkt.io>"]
authors = ["chris west <c@xvxx.io>"]
license = "MIT"
edition = "2018"
description = "an esoteric gopher server"
readme = "README.md"
repository = "https://github.com/dvkt/phd"
repository = "https://github.com/xvxx/phd"
keywords = ["gopher", "server", "daemon"]
exclude = [
"img/*"
@ -30,3 +30,4 @@ content_inspector = "0.2.4"
threadpool = "1.7.1"
gophermap = "0.1.2"
alphanumeric-sort = "1.0.11"
shell-escape = "0.1.4"

@ -5,8 +5,8 @@
|__/ | / |__/
|
--> <p align="center"> <img src="./img/logo.png"> <br>
<a href="https://github.com/dvkt/phd/releases">
<img src="https://img.shields.io/github/v/release/dvkt/phd?include_prereleases">
<a href="https://github.com/xvxx/phd/releases">
<img src="https://img.shields.io/github/v/release/xvxx/phd?include_prereleases">
</a>
</p>
@ -137,7 +137,7 @@ of Gopher!
## installation
Binaries for linux, mac, and raspberry pi are available at
gopher://phkt.io/1/releases/phd and https://github.com/dvkt/phd/releases:
gopher://phkt.io/1/releases/phd and https://github.com/xvxx/phd/releases:
- [phd-v0.1.6-linux-x86_64.tar.gz][0]
- [phd-v0.1.6-linux-armv7.tar.gz (RPi)][1]
@ -164,7 +164,7 @@ Just unzip/untar the `phd` program into your $PATH and get going!
- [ ] ipv6
- [ ] user input sanitization tests
[0]: https://github.com/dvkt/phd/releases/download/v0.1.6/phd-v0.1.6-linux-x86_64.tar.gz
[1]: https://github.com/dvkt/phd/releases/download/v0.1.6/phd-v0.1.6-linux-armv7.tar.gz
[2]: https://github.com/dvkt/phd/releases/download/v0.1.6/phd-v0.1.6-macos.zip
[0]: https://github.com/xvxx/phd/releases/download/v0.1.6/phd-v0.1.6-linux-x86_64.tar.gz
[1]: https://github.com/xvxx/phd/releases/download/v0.1.6/phd-v0.1.6-linux-armv7.tar.gz
[2]: https://github.com/xvxx/phd/releases/download/v0.1.6/phd-v0.1.6-macos.zip
[map]: https://en.wikipedia.org/wiki/Gopher_(protocol)#Source_code_of_a_menu

Loading…
Cancel
Save