Skip to content

Commit 7440d3d

Browse files
committed
macros: rename module cql to value
1 parent d518c14 commit 7440d3d

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

scylla-macros/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mod serialize;
1414
/// This is because of rustdocs limitations that are hard to explain here.
1515
#[proc_macro_derive(SerializeValue, attributes(scylla))]
1616
pub fn serialize_value_derive(tokens_input: TokenStream) -> TokenStream {
17-
match serialize::cql::derive_serialize_value(tokens_input) {
17+
match serialize::value::derive_serialize_value(tokens_input) {
1818
Ok(t) => t.into_token_stream().into(),
1919
Err(e) => e.into_compile_error().into(),
2020
}

scylla-macros/src/serialize/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use darling::FromMeta;
22

3-
pub(crate) mod cql;
43
pub(crate) mod row;
4+
pub(crate) mod value;
55

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

0 commit comments

Comments
 (0)