enveloperb 0.1.2-arm64-darwin-20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/CONTRIBUTING.md +10 -0
- data/Cargo.toml +17 -0
- data/LICENCE +674 -0
- data/README.md +126 -0
- data/enveloperb.gemspec +39 -0
- data/ext/Rakefile +5 -0
- data/lib/enveloperb/awskms.rb +58 -0
- data/lib/enveloperb/encrypted_record.rb +31 -0
- data/lib/enveloperb/simple.rb +35 -0
- data/lib/enveloperb.rb +9 -0
- data/src/lib.rs +195 -0
- data/target/release/deps/libasync_trait-5291ebd3f3dd404e.dylib +0 -0
- data/target/release/deps/libenveloperb.dylib +0 -0
- data/target/release/deps/libfutures_macro-ed9a53f7ef9effa4.dylib +0 -0
- data/target/release/deps/libpin_project_internal-55075f3d0e385afe.dylib +0 -0
- data/target/release/deps/libserde_derive-a06f9ff4b430e8f4.dylib +0 -0
- data/target/release/deps/libthiserror_impl-0e7eed34f1921676.dylib +0 -0
- data/target/release/deps/libtracing_attributes-84ceb9a3bfa264c3.dylib +0 -0
- data/target/release/libenveloperb.dylib +0 -0
- metadata +222 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: '091e881b62f25bf01b4ec91cfe12423f637d6d449a982da3f520ca656c8b8bf1'
|
4
|
+
data.tar.gz: c6353573650ee537cedd26ca3045aa765a6d548fd0b3a06b7338cdd8abef52d4
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 10e45285d6251a75753d930ff4acbf7e551831daeaee18a04b1d7f8406f1ac72317d455a40ddae66fcf3fc4d8532d0bbcce692f1a3e069a92fb4c9c875f1d826
|
7
|
+
data.tar.gz: 926755b6f2179130dbdcf1df7313281ab66ececb3c5d703c89d32595f99eb1ff9eaf86648f0ba105197d4bc8a22afccaa3937b8cf8205b752f8f6b7ada06dd46
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at team@cipherstash.com. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
* If you have found a discrepancy in documented and observed behaviour, that
|
2
|
+
is a bug. Feel free to [report it as an
|
3
|
+
issue](https://github.com/cipherstash/enveloperb/issues), providing
|
4
|
+
sufficient detail to reproduce the problem.
|
5
|
+
|
6
|
+
* If you would like to add new behaviour, please submit a well-tested and
|
7
|
+
well-documented [pull
|
8
|
+
request](https://github.com/cipherstash/enveloperb/pulls).
|
9
|
+
|
10
|
+
* At all times, abide by the Code of Conduct (CODE_OF_CONDUCT.md).
|
data/Cargo.toml
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
[package]
|
2
|
+
name = "enveloperb"
|
3
|
+
version = "0.0.0"
|
4
|
+
edition = "2021"
|
5
|
+
|
6
|
+
[dependencies]
|
7
|
+
enveloper = { git = "https://github.com/cipherstash/enveloper", branch = "main" }
|
8
|
+
lazy_static = "^0.2.2"
|
9
|
+
rutie = "0.8.4"
|
10
|
+
tokio = { version = "^1.17.0", features = [ "rt-multi-thread" ] }
|
11
|
+
aws-config = "0.10.1"
|
12
|
+
aws-sdk-kms = "0.10.1"
|
13
|
+
aws-types = { version = "0.10.1", features = [ "hardcoded-credentials" ] }
|
14
|
+
|
15
|
+
[lib]
|
16
|
+
name = "enveloperb"
|
17
|
+
crate-type = ["cdylib"]
|