Empty age-plugin library crate

This commit is contained in:
Jack Grigg 2020-01-26 17:36:33 +00:00
parent 78e23e45cd
commit 9f90714348
5 changed files with 43 additions and 0 deletions

4
Cargo.lock generated
View file

@ -116,6 +116,10 @@ dependencies = [
"sha2",
]
[[package]]
name = "age-plugin"
version = "0.0.0"
[[package]]
name = "aho-corasick"
version = "0.7.15"

View file

@ -2,5 +2,6 @@
members = [
"age",
"age-core",
"age-plugin",
"rage",
]

11
age-plugin/Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[package]
name = "age-plugin"
description = "[BETA] API for writing age plugins."
version = "0.0.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
repository = "https://github.com/str4d/rage"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]

20
age-plugin/README.md Normal file
View file

@ -0,0 +1,20 @@
# age-plugin Rust library
This crate provides an API for building age plugins.
## License
Licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](../LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](../LICENSE-MIT) or http://opensource.org/licenses/MIT)
at your option.
### Contribution
Unless you explicitly state otherwise, any contribution intentionally
submitted for inclusion in the work by you, as defined in the Apache-2.0
license, shall be dual licensed as above, without any additional terms or
conditions.

7
age-plugin/src/lib.rs Normal file
View file

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}