Skip to content

Commit

Permalink
Links to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
locka99 committed Aug 24, 2018
1 parent ec7a3f9 commit 2775337
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ etc. - just about anything that has data that something else wants to monitor, c
Rust is a systems programming language and is therefore a natural choice for implementing OPC UA. This implementation
supports the embedded, micro and nano profiles but may grow to support features in time.

# Code documentation

Theseare generated from the source

- [Client](https://docs.rs/opcua-client/) - the client-side API.
- [Server](https://docs.rs/opcua-server/) - the server-side API.
- [Core](https://docs.rs/opcua-core/) - core functionality used by client and server.
- [Types](https://docs.rs/opcua-types/) - structures, requests, responses and enums.

# License

The code is licenced under [MPL-2.0](https://opensource.org/licenses/MPL-2.0). Like all open source code, you use this code at your own risk.
Expand Down
1 change: 1 addition & 0 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ homepage = "https://github.com/locka99/opcua"
license = "MPL-2.0"
keywords = ["opcua","opc","ua"]
categories = ["embedded","network-programming"]
documentation = "https://docs.rs/opcua-client/"

[dependencies]
log = "0.4"
Expand Down
1 change: 1 addition & 0 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ license = "MPL-2.0"
keywords = ["opcua","opc","ua"]
categories = ["embedded","network-programming"]
readme = "../README.md"
documentation = "https://docs.rs/opcua-core/"

[dependencies]
log = "0.4"
Expand Down
1 change: 1 addition & 0 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ license = "MPL-2.0"
keywords = ["opcua","opc","ua"]
categories = ["embedded","network-programming"]
readme = "../README.md"
documentation = "https://docs.rs/opcua-server/"

[features]
default = []
Expand Down
1 change: 1 addition & 0 deletions types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ homepage = "https://github.com/locka99/opcua"
license = "MPL-2.0"
keywords = ["opcua","opc","ua"]
categories = ["embedded","network-programming"]
documentation = "https://docs.rs/opcua-types/"

[dependencies]
log = "0.4"
Expand Down

0 comments on commit 2775337

Please sign in to comment.