Skip to content

Commit

Permalink
macros: rename module cql to value
Browse files Browse the repository at this point in the history
  • Loading branch information
muzarski committed May 22, 2024
1 parent d518c14 commit 7440d3d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scylla-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mod serialize;
/// This is because of rustdocs limitations that are hard to explain here.
#[proc_macro_derive(SerializeValue, attributes(scylla))]
pub fn serialize_value_derive(tokens_input: TokenStream) -> TokenStream {
match serialize::cql::derive_serialize_value(tokens_input) {
match serialize::value::derive_serialize_value(tokens_input) {
Ok(t) => t.into_token_stream().into(),
Err(e) => e.into_compile_error().into(),
}
Expand Down
2 changes: 1 addition & 1 deletion scylla-macros/src/serialize/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use darling::FromMeta;

pub(crate) mod cql;
pub(crate) mod row;
pub(crate) mod value;

#[derive(Copy, Clone, PartialEq, Eq, Default)]
enum Flavor {
Expand Down
File renamed without changes.

0 comments on commit 7440d3d

Please sign in to comment.