Skip to content

Commit ccb27eb

Browse files
committed
feat(rust): ockam v0.4.1
1 parent be6f29c commit ccb27eb

4 files changed

Lines changed: 23 additions & 11 deletions

File tree

implementations/rust/ockam/ockam/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,18 @@ All notable changes to this crate will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## v0.4.1 - 2021-03-31
9+
### Changed
10+
- Updated documentation.
11+
812
## v0.4.0 - 2021-03-23
913
### Added
1014

1115
- Unified message type for router implementations.
1216
- Route metadata wrapper type.
1317

1418
### Changed
15-
- Dependeny updates.
19+
- Dependency updates.
1620

1721
## v0.3.0 - 2021-03-04
1822
### Added

implementations/rust/ockam/ockam/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

implementations/rust/ockam/ockam/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ edition = "2018"
77
exclude = [
88
"tests/**"
99
]
10-
homepage = "https://www.ockam.io/"
10+
homepage = "https://github.com/ockam-network/ockam"
1111
keywords = []
1212
license = "Apache-2.0"
1313
name = "ockam"
1414
readme = "README.md"
15-
repository = "https://github.com/ockam-network/ockam"
16-
version = "0.4.0"
15+
repository = "https://github.com/ockam-network/ockam/tree/develop/implementations/rust/ockam/ockam"
16+
version = "0.4.1"
1717

1818
[features]
1919
default = ["std"]

implementations/rust/ockam/ockam/README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,26 @@
55
[![license][license-image]][license-link]
66
[![discuss][discuss-image]][discuss-link]
77

8-
Ockam is a library for building devices that communicate securely, privately
9-
and trustfully with cloud services and other devices.
8+
End-to-end encrypted communication between edge devices and cloud services.
109

11-
This crate provides all dependencies needed to use Ockam in your application.
10+
Get started with our step-by-step [hands-on guide][guide].
1211

13-
Types from other Ockam crates are re-exported by this crate.
12+
## Features
13+
14+
* End-to-end encrypted secure channels.
15+
* Muti-hop, multi-transport, application layer routing.
16+
* Node - an asynchronous worker runtime.
17+
* Workers - actors that can handle routed messages.
18+
* Entities and Profiles.
19+
* Attribute-based credentials with selective disclosure.
1420

1521
## Usage
1622

1723
Add this to your `Cargo.toml`:
1824

1925
```
2026
[dependencies]
21-
ockam = "0.4.0"
27+
ockam = "0.4.1"
2228
```
2329

2430
## Crate Features
@@ -29,7 +35,7 @@ disabled as follows
2935

3036
```
3137
[dependencies]
32-
ockam = { version = "0.4.0", default-features = false }
38+
ockam = { version = "0.4.1", default-features = false }
3339
```
3440

3541
Please note that Cargo features are unioned across the entire dependency
@@ -55,3 +61,5 @@ This code is licensed under the terms of the [Apache License 2.0][license-link].
5561

5662
[discuss-image]: https://img.shields.io/badge/Discuss-Github%20Discussions-ff70b4.svg
5763
[discuss-link]: https://github.com/ockam-network/ockam/discussions
64+
65+
[guide]: https://github.com/ockam-network/ockam/blob/develop/documentation/guides/rust/README.md#rust-guide

0 commit comments

Comments
 (0)