move ph-init to separate crate

This commit is contained in:
Bruce Leidl 2019-09-20 17:57:35 -04:00
parent e69cb5ba1a
commit 3b168d5db5
8 changed files with 25 additions and 0 deletions

1
ph-init/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
target/

16
ph-init/Cargo.lock generated Normal file
View File

@ -0,0 +1,16 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "libc"
version = "0.2.62"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "ph-init"
version = "0.1.0"
dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
]
[metadata]
"checksum libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)" = "34fcd2c08d2f832f376f4173a231990fa5aef4e99fb569867318a227ef4c06ba"

8
ph-init/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "ph-init"
version = "0.1.0"
authors = ["Bruce Leidl <bruce@subgraph.com>"]
edition = "2018"
[dependencies]
libc = "*"