https://github.com/fl03/decanter
Decanter implements core cryptographic primitives in support of the scsys ecosystem
https://github.com/fl03/decanter
cybersecurity rust scsys
Last synced: about 2 months ago
JSON representation
Decanter implements core cryptographic primitives in support of the scsys ecosystem
- Host: GitHub
- URL: https://github.com/fl03/decanter
- Owner: FL03
- License: apache-2.0
- Created: 2022-10-17T17:21:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-13T13:52:10.000Z (about 1 year ago)
- Last Synced: 2025-03-18T05:43:59.317Z (2 months ago)
- Topics: cybersecurity, rust, scsys
- Language: Rust
- Homepage: https://crates.io/crates/decanter
- Size: 153 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# decanter
[](https://github.com/FL03/decanter/actions/workflows/clippy.yml)
[](https://github.com/FL03/decanter/actions/workflows/rust.yml)
[](https://crates.io/crates/decanter)
[](https://docs.rs/decanter)***
Welcome to decanter
## Getting Started
Use Rust's built-in package manager [crates](https://crates.io/crates/decanter) to add *decanter*.
### Building from the source
#### *Clone the repository*
```bash
git clone https://github.com/scattered-systems/scsys
cd scsys
```#### *Build the workspace locally*
```bash
cargo build --release --workspace
```or
```bash
cargo build -F wasm --release --target wasm32-unknown-unknown --workspace
```#### *Testing*
```bash
cargo test --all -F full --release
```or
```bash
cargo test --all -F wasm --release --target wasm32-unknown-unknown
```## Usage
```rust
use scsys::prelude::*;fn main() {
println!("{:?}", Message::::default());
}
```## Contributing
Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.Please make sure to update tests as appropriate.
## License
- [Apache-2.0](https://choosealicense.com/licenses/apache-2.0/)
- [MIT](https://choosealicense.com/licenses/mit/)