-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #195 from nats-io/tyler_nonconditional_js
Make jetstream generally available, and remove the jetstream feature
- Loading branch information
Showing
9 changed files
with
28 additions
and
92 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "nats" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
description = "A Rust NATS client" | ||
authors = ["Derek Collison <[email protected]>", "Tyler Neely <[email protected]>", "Stjepan Glavina <[email protected]>"] | ||
edition = "2018" | ||
|
@@ -12,12 +12,8 @@ readme = "README.md" | |
keywords = ["nats", "client", "messaging", "api"] | ||
categories = ["network-programming", "api-bindings"] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["jetstream"] | ||
|
||
[features] | ||
fault_injection = [] | ||
jetstream = ["serde", "chrono", "serde_json"] | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } | ||
|
@@ -47,9 +43,9 @@ regex = { version = "1.5.4", default-features = false, features = ["std", "unico | |
rustls = "0.19.1" | ||
rustls-native-certs = "0.5.0" | ||
webpki = "0.21.0" | ||
serde = { version = "1.0.126", optional = true, features = ["derive"] } | ||
serde_json = { version = "1.0.64", optional = true } | ||
chrono = { version = "0.4.19", optional = true, features = ["serde"] } | ||
serde = { version = "1.0.126", features = ["derive"] } | ||
serde_json = "1.0.64" | ||
chrono = { version = "0.4.19", features = ["serde"] } | ||
memchr = "2.4.0" | ||
|
||
[target.'cfg(unix)'.dependencies] | ||
|
@@ -65,8 +61,6 @@ historian = "4.0.4" | |
lazy_static = "1.4.0" | ||
nats_test_server = { path = "nats_test_server" } | ||
quicli = "0.4.0" | ||
serde_json = "1.0.64" | ||
serde = { version = "1.0.126", features = ["derive"] } | ||
smol = "1.2.5" | ||
structopt = "0.3.21" | ||
|
||
|
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
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
Oops, something went wrong.