1
0
mirror of https://github.com/actix/examples synced 2025-01-22 22:05:57 +01:00

16 lines
391 B
TOML
Raw Permalink Normal View History

2018-05-26 17:05:12 -04:00
[package]
2023-01-07 15:23:31 +00:00
name = "db-sqlite"
2022-02-02 01:45:20 +00:00
version = "1.0.0"
edition = "2021"
2018-05-26 17:05:12 -04:00
2024-07-07 02:01:13 +01:00
# Do not use workspace deps as they this package isn't part of the workspace.
2018-05-26 17:05:12 -04:00
[dependencies]
2024-07-07 02:01:13 +01:00
actix-web = "4"
env_logger = "0.11"
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
log = "0.4"
2022-02-06 08:19:35 +00:00
r2d2 = "0.8"
2024-07-07 02:01:13 +01:00
r2d2_sqlite = "0.24"
rusqlite = "0.31"
serde = { version = "1", features = ["derive"] }