-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
54 lines (51 loc) · 1.82 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
49
50
51
52
53
54
[workspace]
resolver = "2"
members = [
# Binaries
"notifico-app",
"notificox",
# Libs
## Transports
"notifico-transports",
"transports/notifico-smtp",
"transports/notifico-telegram",
"transports/notifico-whatsapp",
"transports/notifico-smpp",
"transports/notifico-slack",
"transports/notifico-pushover",
"transports/notifico-gotify",
"transports/notifico-ntfy",
## Other
"notifico-core",
"notifico-template",
"notifico-template/migration",
"notifico-subscription",
"notifico-subscription/migration",
"notifico-dbpipeline",
"notifico-dbpipeline/migration",
"notifico-project",
"notifico-project/migration",
"notifico-attachment",
]
[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", "native-tls", "native-tls-alpn", "charset", "http2", "multipart", "stream"] }
axum = { version = "0.7.9", features = ["macros"] }
clap = { version = "4.5.23", features = ["derive", "color", "usage", "env"] }
url = { version = "2.5.4", features = ["serde"] }
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