@@ -23,6 +23,13 @@ lazy_static = { version="1.4.0" }
23
23
serde = { version = " 1.0.143" , features = [" derive" ] }
24
24
diesel = { version =" 2.0.0-rc.1" , default-features = false , features = [" uuid" , " r2d2" , " chrono" , " returning_clauses_for_sqlite_3_35" ] } # plugin_dev, plugin_auth
25
25
26
+ # #
27
+ # # Database
28
+ # #
29
+
30
+ # sqlite dependencies
31
+ libsqlite3-sys = { version = " 0.25" , optional = true , features = [" bundled" ] }
32
+
26
33
# #
27
34
# # PLUGINS
28
35
# #
@@ -65,7 +72,6 @@ actix-web-httpauth = { optional=true, version="0.6.0" }
65
72
derive_more = { optional =true , version =" 0.99.17" }
66
73
futures = { optional =true , version =" 0.3.21" }
67
74
env_logger = { optional =true , version = " 0.9.0" }
68
-
69
75
# #
70
76
# # MISC - here, we list deps which are required by multiple features but are not required in all configurations
71
77
# #
@@ -82,5 +88,5 @@ plugin_storage = [ "aws-config", "aws-types", "aws-endpoint", "aws-sdk-s3", "tok
82
88
plugin_graphql = []
83
89
backend_poem = [" poem" , " anyhow" , " mime_guess" ]
84
90
backend_actix-web = [" actix-web" , " actix-http" , " actix-files" , " actix-multipart" , " actix-web-httpauth" ," derive_more" , " futures" , " env_logger" ]
85
- database_sqlite = [" diesel/sqlite" ]
91
+ database_sqlite = [" diesel/sqlite" , " libsqlite3-sys/bundled " ]
86
92
database_postgres = [" diesel/postgres" ]
0 commit comments