Skip to content

Commit 391dc76

Browse files
committed
add sqlm and sqlm-sqlite placeholders
1 parent 60f3873 commit 391dc76

File tree

7 files changed

+28
-3
lines changed

7 files changed

+28
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
resolver = "2"
33
members = [
44
"postgres",
5-
"postgres-macros",
5+
"postgres-macros", "sqlite", "sqlm",
66
]

postgres/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "sqlm-postgres"
33
version = "0.1.0"
44
edition = "2021"
55
authors = ["Markus Ast <[email protected]>"]
6-
description = "`sql!` to write compile-time checked database queries similar to how `format!` works"
6+
description = "`sql!` macro to write compile-time checked database queries similar to how `format!` works"
77
license = "MIT OR Apache-2.0"
88
repository = "https://github.com/rkusa/sqlm"
99

@@ -26,7 +26,7 @@ once_cell = "1.17"
2626
pgvector = { version = "0.3", features = ["postgres"], optional = true }
2727
rustls = { version = "0.23" }
2828
serde_json = { version = "1.0", optional = true }
29-
sqlm-postgres-macros = { path = "../postgres-macros", default-features = false }
29+
sqlm-postgres-macros = { path = "../postgres-macros", version = "0.1", default-features = false }
3030
time = { version = "0.3", optional = true }
3131
tokio-postgres = "0.7"
3232
tokio-postgres-rustls = "0.12"

sqlite/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "sqlm-sqlite"
3+
version = "0.1.0"
4+
edition = "2021"
5+
authors = ["Markus Ast <[email protected]>"]
6+
description = "reserved"
7+
license = "MIT OR Apache-2.0"
8+
repository = "https://github.com/rkusa/sqlm"
9+
10+
[dependencies]

sqlite/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

sqlm/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "sqlm"
3+
version = "0.1.0"
4+
edition = "2021"
5+
authors = ["Markus Ast <[email protected]>"]
6+
description = "reserved"
7+
license = "MIT OR Apache-2.0"
8+
repository = "https://github.com/rkusa/sqlm"
9+
10+
[dependencies]

sqlm/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Check out the database-specific crates:
2+
3+
- [`sqlm-posgres`](https://crates.io/crates/sqlm-postgres)

sqlm/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

0 commit comments

Comments
 (0)