Skip to content

Commit 25451be

Browse files
authored
Fix pubspec description whitespace, updated readme (#206)
1 parent fe56224 commit 25451be

File tree

13 files changed

+27
-13
lines changed

13 files changed

+27
-13
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,21 @@ aims to use a separate package whenever it makes sense to have an independent
1313
major version. This often means splitting functionality into separate packages,
1414
which can be reused independently.
1515

16+
| Package | Description | Version |
17+
|---|---|---|
18+
| [acyclic_steps](acyclic_steps/) | An explicit acyclic step dependency framework with concurrent evaluation and dependency injection. | [![pub package](https://img.shields.io/pub/v/acyclic_steps.svg)](https://pub.dev/packages/acyclic_steps) |
19+
| [canonical_json](canonical_json/) | Encoder and decoder for a canonical JSON format, useful when cryptographically hashing or signing JSON objects. | [![pub package](https://img.shields.io/pub/v/canonical_json.svg)](https://pub.dev/packages/canonical_json) |
20+
| [chunked_stream](chunked_stream/) | Utilities for working with chunked streams, such as byte streams which is often given as a stream of byte chunks with type `Stream<List<int>>`. | [![pub package](https://img.shields.io/pub/v/chunked_stream.svg)](https://pub.dev/packages/chunked_stream) |
21+
| [http_methods](http_methods/) | List of all HTTP methods registered with IANA as list of strings, and metadata such as whether a method idempotent. | [![pub package](https://img.shields.io/pub/v/http_methods.svg)](https://pub.dev/packages/http_methods) |
22+
| [neat_cache](neat_cache/) | A neat cache abstraction for wrapping in-memory or redis caches. | [![pub package](https://img.shields.io/pub/v/neat_cache.svg)](https://pub.dev/packages/neat_cache) |
23+
| [neat_periodic_task](neat_periodic_task/) | Auxiliary classes for reliably running a periodic task in a long-running process such as web-server. | [![pub package](https://img.shields.io/pub/v/neat_periodic_task.svg)](https://pub.dev/packages/neat_periodic_task) |
24+
| [pem](pem/) | PEM encoding/decoding of textual keys following RFC 7468, supporting both lax/strict-mode, and certificates chains of concatenated PEM blocks. | [![pub package](https://img.shields.io/pub/v/pem.svg)](https://pub.dev/packages/pem) |
25+
| [retry](retry/) | Utility for wrapping an asynchronous function in automatic retry logic with exponential back-off, useful when making requests over network. | [![pub package](https://img.shields.io/pub/v/retry.svg)](https://pub.dev/packages/retry) |
26+
| [safe_url_check](safe_url_check/) | Check if an untrusted URL is broken, without allowing connections to a private IP address. | [![pub package](https://img.shields.io/pub/v/safe_url_check.svg)](https://pub.dev/packages/safe_url_check) |
27+
| [sanitize_html](sanitize_html/) | Function for sanitizing HTML to prevent XSS by restrict elements and attributes to a safe subset of allowed values. | [![pub package](https://img.shields.io/pub/v/sanitize_html.svg)](https://pub.dev/packages/sanitize_html) |
28+
| [slugid](slugid/) | A URL-safe base64 encoding for UUIDv4 stripped of padding. Useful when embedding short random UUIDs in URLs. | [![pub package](https://img.shields.io/pub/v/slugid.svg)](https://pub.dev/packages/slugid) |
29+
| [vendor](vendor/) | Utility for vendoring packages into a project and rewriting import/export statements. | [![pub package](https://img.shields.io/pub/v/vendor.svg)](https://pub.dev/packages/vendor) |
30+
1631
## Repository Management
1732
The root `pubspec.yaml` is only intended to lock the development dependencies
1833
for repository management. When adding new packages or changing `mono_repo.yaml`

acyclic_steps/pubspec.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: acyclic_steps
22
version: 0.11.1
3-
description: |
3+
description: >-
44
An explicit acyclic step dependency framework with concurrent evaluation
55
and dependency injection.
66
homepage: https://github.com/google/dart-neats/tree/master/acyclic_steps
@@ -16,4 +16,3 @@ dev_dependencies:
1616
lints: ^1.0.0
1717
environment:
1818
sdk: '>=2.12.0 <3.0.0'
19-

canonical_json/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: canonical_json
22
version: 1.1.2
3-
description: |
3+
description: >-
44
Encoder and decoder for a canonical JSON format, useful when cryptographically
55
hashing or signing JSON objects.
66
homepage: https://github.com/google/dart-neats/tree/master/canonical_json

chunked_stream/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: chunked_stream
22
version: 1.4.2
3-
description: |
3+
description: >-
44
Utilities for working with chunked streams, such as byte streams which is
55
often given as a stream of byte chunks with type `Stream<List<int>>`.
66
homepage: https://github.com/google/dart-neats/tree/master/chunked_stream

http_methods/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: http_methods
22
version: 1.1.1
3-
description: |
3+
description: >-
44
List of all HTTP methods registered with IANA as list of strings, and metadata
55
such as whether a method idempotent.
66
homepage: https://github.com/google/dart-neats/tree/master/http_methods

neat_cache/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: neat_cache
22
version: 2.0.3
3-
description: |
3+
description: >-
44
A neat cache abstraction for wrapping in-memory or redis caches.
55
homepage: https://github.com/google/dart-neats/tree/master/neat_cache
66
repository: https://github.com/google/dart-neats.git

neat_periodic_task/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: neat_periodic_task
22
version: 2.0.1
3-
description: |
3+
description: >-
44
Auxiliary classes for reliably running a periodic task in a long-running
55
process such as web-server.
66
homepage: https://github.com/google/dart-neats/tree/master/neat_periodic_task

pem/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: pem
22
version: 2.0.4
3-
description: |
3+
description: >-
44
PEM encoding/decoding of textual keys following RFC 7468,
55
supporting both lax/strict-mode, and certificates chains of concatenated
66
PEM blocks.

retry/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: retry
22
version: 3.1.1
3-
description: |
3+
description: >-
44
Utility for wrapping an asynchronous function in automatic retry logic with
55
exponential back-off, useful when making requests over network.
66
homepage: https://github.com/google/dart-neats/tree/master/retry

safe_url_check/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: safe_url_check
22
version: 1.1.1
3-
description: |
3+
description: >-
44
Check if an untrusted URL is broken, without allowing connections to a private
55
IP address.
66
homepage: https://github.com/google/dart-neats/tree/master/safe_url_check

sanitize_html/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sanitize_html
22
version: 2.0.0-dev
3-
description: |
3+
description: >-
44
Function for sanitizing HTML to prevent XSS by restrict elements and
55
attributes to a safe subset of allowed values.
66
homepage: https://github.com/google/dart-neats/tree/master/sanitize_html

slugid/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: slugid
22
version: 1.1.2
3-
description: |
3+
description: >-
44
A URL-safe base64 encoding for UUIDv4 stripped of padding. Useful when
55
embedding short random UUIDs in URLs.
66
homepage: https://github.com/google/dart-neats/tree/master/slugid

vendor/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: vendor
22
version: 0.9.3
3-
description: |
3+
description: >-
44
Utility for vendoring packages into a project and rewriting import/export
55
statements.
66
homepage: https://github.com/google/dart-neats/tree/master/vendor

0 commit comments

Comments
 (0)