-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 946 Bytes
/
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
[workspace]
members = ["crates/lynx-core", "crates/lynx-proxy/src-tauri", "crates/lynx-cli"]
resolver = "2"
[workspace.package]
version = "0.1.4"
authors = ["suxin2017"]
description = "A proxy service"
edition = "2024"
license = "MIT"
documentation = "https://github.com/suxin2017/lynx"
homepage = "https://github.com/suxin2017/lynx"
repository = "https://github.com/suxin2017/lynx"
# Add this config to your root Cargo.toml (virtual manifest)
[workspace.metadata.release]
shared-version = true
tag-name = "v{{version}}"
[workspace.dependencies]
sea-orm = { version = "1.1.0", features = [
"sqlx-sqlite",
"runtime-tokio-rustls",
"macros",
"with-uuid",
"debug-print",
] }
tokio = { version = "1.10.0", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
anyhow = "1.0.95"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"