-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 1.43 KB
/
Copy pathCargo.toml
File metadata and controls
40 lines (34 loc) · 1.43 KB
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
[workspace]
members = [
"components",
"migration",
"pingora",
"server",
"service",
"service-api",
"switchgear",
"testing"
]
resolver = "2"
[workspace.package]
version = "0.1.26"
[workspace.dependencies]
switchgear-components = { version = "0.1.26", path = "components" }
switchgear-migration = { version = "0.1.26", path = "migration" }
switchgear-pingora = { version = "0.1.26", path = "pingora" }
switchgear-service = { version = "0.1.26", path = "service" }
switchgear-service-api = { version = "0.1.26", path = "service-api" }
switchgear-testing = { version = "0.1.26", path = "testing" }
[profile.release]
codegen-units = 1
lto = true
panic = 'abort'
strip = true
[patch.crates-io]
sqlx = { git = "https://github.com/bitshock-src/sqlx.git", tag = "rustls-native-certs-aws-lc-rs" }
sqlx-core = { git = "https://github.com/bitshock-src/sqlx.git", tag = "rustls-native-certs-aws-lc-rs" }
sqlx-macros = { git = "https://github.com/bitshock-src/sqlx.git", tag = "rustls-native-certs-aws-lc-rs" }
sqlx-macros-core = { git = "https://github.com/bitshock-src/sqlx.git", tag = "rustls-native-certs-aws-lc-rs" }
sqlx-mysql = { git = "https://github.com/bitshock-src/sqlx.git", tag = "rustls-native-certs-aws-lc-rs" }
sqlx-postgres = { git = "https://github.com/bitshock-src/sqlx.git", tag = "rustls-native-certs-aws-lc-rs" }
sqlx-sqlite = { git = "https://github.com/bitshock-src/sqlx.git", tag = "rustls-native-certs-aws-lc-rs" }