Skip to content

Commit

Permalink
renamed feature reader to data-reader
Browse files Browse the repository at this point in the history
  • Loading branch information
amigin committed Sep 17, 2023
1 parent 38a0c6a commit c4a7d2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion my-no-sql-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ macros = [
"dep:my-no-sql-abstractions",
]
abstractions = ["dep:my-no-sql-abstractions"]
reader = ["dep:my-no-sql-tcp-reader"]
data-reader = ["dep:my-no-sql-tcp-reader"]
tcp-contracts = ["dep:my-no-sql-tcp-shared"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion my-no-sql-sdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub extern crate rust_extensions as rust_extensions;
#[cfg(any(feature = "macros", feature = "abstractions"))]
pub extern crate my_no_sql_abstractions as abstractions;

#[cfg(feature = "reader")]
#[cfg(feature = "data-reader")]
pub extern crate my_no_sql_tcp_reader as reader;

#[cfg(feature = "tcp-contracts")]
Expand Down

0 comments on commit c4a7d2a

Please sign in to comment.