Skip to content

Commit

Permalink
Fix Cargo.toml in macros crate
Browse files Browse the repository at this point in the history
  • Loading branch information
penberg committed Dec 25, 2024
1 parent 37445ee commit 37e1f35
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion core/vdbe/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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};

Expand Down
10 changes: 9 additions & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 37e1f35

Please sign in to comment.