mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
Empty age-plugin library crate
This commit is contained in:
parent
78e23e45cd
commit
9f90714348
5 changed files with 43 additions and 0 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -116,6 +116,10 @@ dependencies = [
|
|||
"sha2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "age-plugin"
|
||||
version = "0.0.0"
|
||||
|
||||
[[package]]
|
||||
name = "aho-corasick"
|
||||
version = "0.7.15"
|
||||
|
|
|
@ -2,5 +2,6 @@
|
|||
members = [
|
||||
"age",
|
||||
"age-core",
|
||||
"age-plugin",
|
||||
"rage",
|
||||
]
|
||||
|
|
11
age-plugin/Cargo.toml
Normal file
11
age-plugin/Cargo.toml
Normal 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
20
age-plugin/README.md
Normal 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
7
age-plugin/src/lib.rs
Normal file
|
@ -0,0 +1,7 @@
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
assert_eq!(2 + 2, 4);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue