Skip to content

Commit a674338

Browse files
committed
add metadata to Cargo.toml files
1 parent 126b152 commit a674338

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

postgres-macros/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
name = "sqlm-postgres-macros"
33
version = "0.1.0"
44
edition = "2021"
5+
authors = ["Markus Ast <[email protected]>"]
6+
description = "macros for `sqlm-postgres`"
7+
license = "MIT OR Apache-2.0"
8+
repository = "https://github.com/rkusa/sqlm"
59

610
[lib]
711
proc-macro = true

postgres/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
name = "sqlm-postgres"
33
version = "0.1.0"
44
edition = "2021"
5+
authors = ["Markus Ast <[email protected]>"]
6+
description = "simple `sql!` macro that works similar to `format!`"
7+
license = "MIT OR Apache-2.0"
8+
repository = "https://github.com/rkusa/sqlm"
59

610
[features]
711
default = ["json", "time", "uuid", "pgvector"]
@@ -17,9 +21,7 @@ pgvector = ["sqlm-postgres-macros/pgvector", "dep:pgvector"]
1721
[dependencies]
1822
deadpool-postgres = "0.13"
1923
dotenvy = "0.15"
20-
http-error = { version = "0.3.0-alpha.1", features = [
21-
"tracing",
22-
] } # git = "https://github.com/rkusa/http-error.git", rev = "1f0630c" } # path = "../../http-error" }
24+
http-error = { version = "0.3.0-alpha.1", features = ["tracing"] }
2325
once_cell = "1.17"
2426
pgvector = { version = "0.3", features = ["postgres"], optional = true }
2527
rustls = { version = "0.23" }

0 commit comments

Comments
 (0)