-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into better-stream-impl
- Loading branch information
Showing
32 changed files
with
1,576 additions
and
384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -140,3 +140,4 @@ filter_subject | |
filter_subjects | ||
rollup | ||
IoT | ||
ObjectMeta |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
blank_issues_enabled: true | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: NATS Slack | ||
- name: Discussion | ||
url: https://github.com/nats-io/nats.rs/discussions | ||
about: Ideal for ideas, feedback, or longer form questions. | ||
- name: Chat | ||
url: https://slack.nats.io | ||
about: Please ask and answer questions in the rust channel here. | ||
about: Ideal for short, one-off questions, general conversation, and meeting other NATS users! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
name: Defect | ||
description: Report a defect, such as a bug or regression. | ||
labels: | ||
- defect | ||
body: | ||
- type: textarea | ||
id: versions | ||
attributes: | ||
label: What version were you using? | ||
description: Include the server version (`nats-server --version`) and any client versions when observing the issue. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: What environment was the server running in? | ||
description: This pertains to the operating system, CPU architecture, and/or Docker image that was used. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Is this defect reproducible? | ||
description: Provide best-effort steps to showcase the defect. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Given the capability you are leveraging, describe your expectation? | ||
description: This may be the expected behavior or performance characteristics. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual | ||
attributes: | ||
label: Given the expectation, what is the defect you are observing? | ||
description: This may be an unexpected behavior or regression in performance. | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
name: Proposal | ||
description: Propose an enhancement or new feature. | ||
labels: | ||
- proposal | ||
body: | ||
- type: textarea | ||
id: usecase | ||
attributes: | ||
label: What motivated this proposal? | ||
description: Describe the use case justifying this request. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: change | ||
attributes: | ||
label: What is the proposed change? | ||
description: This could be a behavior change, enhanced API, or a branch new feature. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: benefits | ||
attributes: | ||
label: Who benefits from this change? | ||
description: Describe how this not only benefits you. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: alternates | ||
attributes: | ||
label: What alternatives have you evaluated? | ||
description: This could be using existing features or relying on an external dependency. | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "async-nats" | |
authors = ["Tomasz Pietrek <[email protected]>", "Casper Beyer <[email protected]>"] | ||
version = "0.31.0" | ||
edition = "2021" | ||
rust = "1.64.0" | ||
rust = "1.67.0" | ||
description = "A async Rust NATS client" | ||
license = "Apache-2.0" | ||
documentation = "https://docs.rs/async-nats" | ||
|
@@ -16,30 +16,30 @@ categories = ["network-programming", "api-bindings"] | |
[dependencies] | ||
memchr = "2.4" | ||
bytes = { version = "1.4.0", features = ["serde"] } | ||
futures = { version = "0.3.26", default-features = false, features = ["std", "async-await"] } | ||
futures = { version = "0.3.28", default-features = false, features = ["std", "async-await"] } | ||
nkeys = "0.3.0" | ||
once_cell = "1.17.1" | ||
regex = "1.7.1" | ||
serde = { version = "1.0.152", features = ["derive"] } | ||
serde_json = "1.0.93" | ||
serde_repr = "0.1.10" | ||
once_cell = "1.18.0" | ||
regex = "1.9.1" | ||
serde = { version = "1.0.184", features = ["derive"] } | ||
serde_json = "1.0.104" | ||
serde_repr = "0.1.16" | ||
http = "0.2.9" | ||
tokio = { version = "1.25.0", features = ["macros", "rt", "fs", "net", "sync", "time", "io-util"] } | ||
tokio = { version = "1.29.0", features = ["macros", "rt", "fs", "net", "sync", "time", "io-util"] } | ||
itoa = "1" | ||
url = { version = "2"} | ||
tokio-rustls = "0.24" | ||
rustls-pemfile = "1.0.2" | ||
nuid = "0.4.1" | ||
nuid = "0.5" | ||
serde_nanos = "0.1.3" | ||
time = { version = "0.3.20", features = ["parsing", "formatting", "serde", "serde-well-known"] } | ||
time = { version = "0.3.24", features = ["parsing", "formatting", "serde", "serde-well-known"] } | ||
rustls-native-certs = "0.6" | ||
tracing = "0.1" | ||
thiserror = "1.0" | ||
base64 = "0.21" | ||
tokio-retry = "0.3" | ||
ring = "0.16" | ||
rand = "0.8" | ||
webpki = { package = "rustls-webpki", version = "0.101.1", features = ["alloc", "std"] } | ||
webpki = { package = "rustls-webpki", version = "0.101.2", features = ["alloc", "std"] } | ||
|
||
[dev-dependencies] | ||
criterion = { version = "0.5", features = ["async_tokio"]} | ||
|
@@ -58,6 +58,6 @@ slow_tests = [] | |
|
||
|
||
[[bench]] | ||
name = "core_nats" | ||
name = "main" | ||
harness = false | ||
lto = true |
Oops, something went wrong.