renamed macro crate

This commit is contained in:
vignesh-j-shetty 2024-12-21 13:19:04 +05:30
parent 1e72fee343
commit a43a1d204c
6 changed files with 9 additions and 9 deletions

10
Cargo.lock generated
View file

@ -536,10 +536,6 @@ dependencies = [
"uuid",
]
[[package]]
name = "description_derive"
version = "0.0.0"
[[package]]
name = "digest"
version = "0.10.7"
@ -1134,7 +1130,6 @@ dependencies = [
"cfg_block",
"chrono",
"criterion",
"description_derive",
"fallible-iterator 0.3.0",
"getrandom",
"hex",
@ -1144,6 +1139,7 @@ dependencies = [
"julian_day_converter",
"libc",
"log",
"macros",
"mimalloc",
"mockall",
"nix 0.29.0",
@ -1208,6 +1204,10 @@ version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
[[package]]
name = "macros"
version = "0.0.0"
[[package]]
name = "memchr"
version = "2.7.4"

View file

@ -9,7 +9,7 @@ members = [
"sqlite3",
"core",
"simulator",
"test", "description_derive",
"test", "macros",
]
exclude = ["perf/latency/limbo"]

View file

@ -53,7 +53,7 @@ pest = { version = "2.0", optional = true }
pest_derive = { version = "2.0", optional = true }
rand = "0.8.5"
bumpalo = { version = "3.16.0", features = ["collections", "boxed"] }
description_derive = { path = "../description_derive" }
macros = { path = "../macros" }
[target.'cfg(not(target_family = "windows"))'.dev-dependencies]
pprof = { version = "0.14.0", features = ["criterion", "flamegraph"] }

View file

@ -49,7 +49,7 @@ use std::collections::{BTreeMap, HashMap};
use std::fmt::Display;
use std::rc::{Rc, Weak};
pub type BranchOffset = i64;
use description_derive::Description;
use macros::Description;
pub type CursorID = usize;
pub type PageIdx = usize;

View file

@ -1,5 +1,5 @@
[package]
name = "description_derive"
name = "macros"
[lib]
proc-macro = true