Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From sqlsrv-0.5.0 To trunk
2024-09-18
| ||
09:45 | Move clippy settings to Cargo.toml and add a bacon.toml config. Leaf check-in: d778cb71d8 user: jan tags: trunk | |
2024-09-10
| ||
02:45 | Updated swctx. Pedantic clippy updates. check-in: a561ae41d5 user: jan tags: trunk | |
2024-08-06
| ||
16:49 | Release maintenance. check-in: f6bf902f10 user: jan tags: sqlsrv-0.5.0, trunk | |
16:46 | Update changelog. check-in: 9355c6e401 user: jan tags: trunk | |
Changes to Cargo.toml.
︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | + + - + + + + + + + | repository = "https://repos.qrnch.tech/pub/sqlsrv" description = "Utility functions for managing SQLite connections in a server application." rust-version = "1.56" exclude = [ ".fossil-settings", ".efiles", ".fslckout", "bacon.toml", "build_docs.sh", "examples", "www", "bacon.toml", "rustfmt.toml" ] # https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section [badges] maintenance = { status = "experimental" } [features] tpool = ["dep:swctx", "dep:threadpool"] [dependencies] parking_lot = { version = "0.12.3" } r2d2 = { version = "0.8.10" } r2d2_sqlite = { version = "0.25.0" } # Need to add the `hooks` feature. Unfortunately the version needs to be # specified here. It would be much more convenient if it could use the version # from r2d2_sqlite. Allegedely one can use the version "*", which apparently # does not mean "latest", but have not yet confirmed this. rusqlite = { version = "0.32.1", features = ["hooks"] } |
Added bacon.toml.