-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (32 loc) · 1.15 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
[workspace]
resolver = "2"
members = [
"notifico-core",
"transports/notifico-smtp",
"transports/notifico-telegram",
"transports/notifico-whatsapp",
"transports/notifico-smpp",
"notifico-template",
"notifico-worker",
"notifico-apiserver",
"notifico-subscription"
]
[workspace.dependencies]
sea-orm = { version = "1.1.0-rc.3", features = ["sqlx-sqlite", "sqlx-postgres", "sqlx-mysql", "runtime-tokio-native-tls", "macros"] }
reqwest = { version = "0.12.8", default-features = false, features = ["json", "default-tls", "charset"] }
axum = "0.8.0-alpha.1"
[workspace.dependencies.sea-orm-migration]
version = "1.1.0-rc.3"
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