logging: Move agent logger to a separate package

The agent logger is useful and generic enough that it can be used by
other components, so move the agent logging package to below a top level
`pkg` to encourage re-use.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt 2020-06-04 11:55:08 +01:00
parent 43db1284e9
commit a2dce2dc71
3 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,7 @@ edition = "2018"
[dependencies]
oci = { path = "oci" }
logging = { path = "logging" }
logging = { path = "../../pkg/logging" }
rustjail = { path = "rustjail" }
protocols = { path = "protocols" }
netlink = { path = "netlink" }
@ -33,7 +33,6 @@ tempfile = "3.1.0"
[workspace]
members = [
"logging",
"netlink",
"oci",
"protocols",