Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

9 database support #38

Merged
merged 3 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/silent_db/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use silent_db::mysql::base::TableUtils;

mod models;
// mod models;

#[tokio::main]
async fn main() {
Expand Down
3 changes: 3 additions & 0 deletions silent-db-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ homepage.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
description = """
Macros for silent-db
"""
#version.workspace = true
version = "0.1.0"

Expand Down
5 changes: 4 additions & 1 deletion silent-db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ homepage.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
description = """
Database support for silent
"""
#version.workspace = true
version = "0.1.0"

Expand All @@ -25,7 +28,7 @@ chrono = { version = "0.4.34", features = ["serde"] }
console = "0.15.8"
quote = "1.0.35"
syn = "2.0.51"
silent-db-macros = { path = "../silent-db-macros" }
silent-db-macros = { path = "../silent-db-macros", version = "0.1.0" }
regex = "1.10.3"

[dev-dependencies]
Expand Down
Loading