-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
48 lines (45 loc) · 1.62 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
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
[workspace]
resolver = "2"
members = [
"notifico-core",
"transports/notifico-smtp",
"transports/notifico-telegram",
"transports/notifico-whatsapp",
"transports/notifico-smpp",
"transports/notifico-slack",
"transports/notifico-pushover",
"notifico-template",
"notifico-template/migration",
"notifico-worker",
"notifico-userapi",
"notifico-subscription",
"notifico-subscription/migration",
"notifico-dbpipeline",
"notifico-dbpipeline/migration",
"notifico-project",
"notifico-project/migration",
"notifico-web",
"notifico-ingest",
"notificox",
]
[workspace.dependencies]
sea-orm = { version = "1.1.2", features = ["sqlx-sqlite", "sqlx-postgres", "sqlx-mysql", "runtime-tokio-native-tls", "macros"] }
reqwest = { version = "0.12.9", default-features = false, features = ["json", "default-tls", "charset"] }
axum = { version = "0.7.9", features = ["macros"] }
clap = { version = "4.5.21", features = ["derive", "color", "usage", "env"] }
uuid = { version = "1.11.0", features = ["serde", "v7"] }
[workspace.dependencies.sea-orm-migration]
version = "1.1.2"
features = [
# Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI.
# View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.
# e.g.
"runtime-tokio-native-tls", # `ASYNC_RUNTIME` feature
"sqlx-sqlite", # `DATABASE_DRIVER` feature
"sqlx-postgres", # `DATABASE_DRIVER` feature
"sqlx-mysql", # `DATABASE_DRIVER` feature
]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1