Fix Cargo.toml in macros crate

This commit is contained in:
Pekka Enberg
2024-12-25 11:54:16 +02:00
parent 37445ee5a9
commit 37e1f35df8
4 changed files with 16 additions and 8 deletions

10
Cargo.lock generated
View File

@@ -1138,8 +1138,8 @@ dependencies = [
"jsonb",
"julian_day_converter",
"libc",
"limbo_macros",
"log",
"macros",
"mimalloc",
"mockall",
"nix 0.29.0",
@@ -1160,6 +1160,10 @@ dependencies = [
"uuid",
]
[[package]]
name = "limbo_macros"
version = "0.0.10"
[[package]]
name = "limbo_sim"
version = "0.0.10"
@@ -1206,10 +1210,6 @@ 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

@@ -54,7 +54,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"] }
macros = { path = "../macros" }
limbo_macros = { path = "../macros" }
uuid = { version = "1.11.0", features = ["v4", "v7"], optional = true }
[target.'cfg(not(target_family = "windows"))'.dev-dependencies]

View File

@@ -40,7 +40,7 @@ use crate::util::parse_schema_rows;
use crate::{function::JsonFunc, json::get_json, json::json_array};
use crate::{Connection, Result, TransactionState};
use crate::{Rows, DATABASE_VERSION};
use macros::Description;
use limbo_macros::Description;
use datetime::{exec_date, exec_time, exec_unixepoch};

View File

@@ -1,5 +1,13 @@
# Copyright 2024 the Limbo authors. All rights reserved. MIT license.
[package]
name = "macros"
name = "limbo_macros"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "The Limbo database library"
[lib]
proc-macro = true