Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a subject type #222

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
chrono = { version = "0.4.19", features = ["serde"] }
memchr = "2.4.0"
thiserror = "1.0"

[target.'cfg(unix)'.dependencies]
libc = "0.2.98"
Expand All @@ -63,6 +64,7 @@ nats_test_server = { path = "nats_test_server" }
quicli = "0.4.0"
smol = "1.2.5"
structopt = "0.3.21"
test-case = "1.2"

[[bench]]
name = "nats_bench"
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ mod message;
mod options;
mod proto;
mod secure_wipe;
mod subject;
mod subscription;

/// `JetStream` stream management and consumers.
Expand Down Expand Up @@ -223,6 +224,7 @@ use std::{
pub use headers::Headers;
pub use message::Message;
pub use options::Options;
pub use subject::*;
pub use subscription::Subscription;

/// A re-export of the `rustls` crate used in this crate,
Expand Down
Loading