Publish Placeholder package to crates.io

This commit is contained in:
Till Wegmueller 2020-06-04 15:53:50 +02:00
parent 13f41862bb
commit 9aac1f148c
3 changed files with 13 additions and 3 deletions

3
.idea/libips.iml generated
View file

@ -6,6 +6,9 @@
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" /> <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/target" /> <excludeFolder url="file://$MODULE_DIR$/target" />
</content> </content>
<content url="file://$MODULE_DIR$/../pkg6depotd" />
<content url="file://$MODULE_DIR$/../pkg6dev" />
<content url="file://$MODULE_DIR$/../pkg6repo" />
<orderEntry type="inheritedJdk" /> <orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
</component> </component>

View file

@ -5,10 +5,15 @@
[package] [package]
name = "libips" name = "libips"
version = "0.1.0" version = "0.0.1-placeholder"
authors = ["Till Wegmueller <till.wegmueller@openflowlabs.com>"] authors = ["Till Wegmueller <till.wegmueller@openflowlabs.com>"]
edition = "2018" edition = "2018"
license-file = "LICENSE"
license = "Mozilla Public License, v. 2.0"
description = "The core library for the rust version of the Image Packaging System. Includes Python bindings."
repository = "https://github.com/OpenFlowLabs/libips"
readme = "README.md"
keywords = ["packaging", "illumos"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]

View file

@ -2,4 +2,6 @@
This repository contains all modules and functions one needs to implement an Image Packaging System based utility. This repository contains all modules and functions one needs to implement an Image Packaging System based utility.
Be that a server, client or other utilities. Be that a server, client or other utilities.
Includes Python bindings with PyO3.