Add library for sharing automation code

This commit is contained in:
Hanno Braun 2022-09-06 11:07:52 +02:00
parent 74c0ccf05c
commit bc45ccf27e
5 changed files with 13 additions and 0 deletions

4
Cargo.lock generated
View File

@ -212,6 +212,10 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "autolib"
version = "0.1.0"
[[package]]
name = "automator"
version = "0.1.0"

View File

@ -18,6 +18,7 @@ members = [
"models/star",
"models/test",
"tools/autolib",
"tools/automator",
"tools/export-validator",
"tools/release-operator",

4
tools/autolib/Cargo.toml Normal file
View File

@ -0,0 +1,4 @@
[package]
name = "autolib"
version = "0.1.0"
edition = "2021"

3
tools/autolib/README.md Normal file
View File

@ -0,0 +1,3 @@
# `autolib`
Code that is shared between automation tools.

1
tools/autolib/src/lib.rs Normal file
View File

@ -0,0 +1 @@