diff --git a/Cargo.toml b/Cargo.toml index 9af6743..c67b1db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,3 +6,4 @@ members = ["tap_core", "tap_aggregator", "tap_integration_tests"] version = "0.1.0" edition = "2021" license = "Apache-2.0" +repository = "https://github.com/semiotic-ai/timeline-aggregation-protocol" diff --git a/tap_aggregator/Cargo.toml b/tap_aggregator/Cargo.toml index 0c326e4..9332873 100644 --- a/tap_aggregator/Cargo.toml +++ b/tap_aggregator/Cargo.toml @@ -3,6 +3,7 @@ name = "tap_aggregator" version = "0.3.1" edition.workspace = true license.workspace = true +repository.workspace = true readme = "README.md" description = "A JSON-RPC service for the Timeline Aggregation Protocol that lets clients request an aggregate receipt from a list of individual receipts." diff --git a/tap_core/Cargo.toml b/tap_core/Cargo.toml index 5f4a1d7..5b8560e 100644 --- a/tap_core/Cargo.toml +++ b/tap_core/Cargo.toml @@ -3,6 +3,8 @@ name = "tap_core" version = "1.0.0" edition.workspace = true license.workspace = true +repository.workspace = true +readme = "README.md" description = "Core Timeline Aggregation Protocol library: a fast, efficient and trustless unidirectional micro-payments system." [dependencies] diff --git a/tap_core/README.md b/tap_core/README.md new file mode 120000 index 0000000..32d46ee --- /dev/null +++ b/tap_core/README.md @@ -0,0 +1 @@ +../README.md \ No newline at end of file diff --git a/tap_core/src/lib.rs b/tap_core/src/lib.rs index 8d40dcf..2afa51f 100644 --- a/tap_core/src/lib.rs +++ b/tap_core/src/lib.rs @@ -1,6 +1,6 @@ // Copyright 2023-, Semiotic AI, Inc. // SPDX-License-Identifier: Apache-2.0 -#![doc = include_str!("../../README.md")] +#![doc = include_str!("../README.md")] //! ## Getting started //! //! To get started with the TAP protocol, take a look on the [`manager`] module diff --git a/tap_integration_tests/Cargo.toml b/tap_integration_tests/Cargo.toml index 18741a1..7c7eac0 100644 --- a/tap_integration_tests/Cargo.toml +++ b/tap_integration_tests/Cargo.toml @@ -3,6 +3,7 @@ name = "tap_integration_tests" version = "0.1.10" edition.workspace = true license.workspace = true +repository.workspace = true autotests = false description = "Integration tests for the Timeline Aggregation Protocol." publish = false