-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (84 loc) · 2.45 KB
/
Cargo.toml
File metadata and controls
89 lines (84 loc) · 2.45 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[workspace]
members = [
"crates/surge-core",
"crates/surge-ffi",
"crates/surge-cli",
"crates/surge-supervisor",
"crates/surge-bench",
"crates/surge-installer",
"crates/surge-installer-ui",
]
resolver = "3"
[workspace.package]
version = "1.0.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/fintermobilityas/surge"
[workspace.dependencies]
surge-core = { path = "crates/surge-core", version = "1.0.0" }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
sha2 = "0.11"
hex = "0.4"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "stream", "json"] }
tokio = { version = "1", features = ["full"] }
zstd = { version = "0.13", features = ["zstdmt"] }
tar = "0.4"
clap = { version = "4", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
thiserror = "2.0"
cc = "1.2"
base64 = "0.22"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
percent-encoding = "2.3"
quick-xml = "0.39"
async-trait = "0.1"
futures-util = "0.3"
dialoguer = "0.12"
indicatif = "0.18"
tempfile = "3"
uuid = { version = "1", features = ["v4"] }
which = "8"
eframe = { version = "0.34.1", default-features = false, features = ["glow", "default_fonts", "x11", "wayland"] }
image = { version = "0.25", default-features = false, features = ["png"] }
[workspace.lints.rust]
unsafe_op_in_unsafe_fn = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
similar_names = "allow"
doc_markdown = "allow"
wildcard_imports = "allow"
borrow_as_ptr = "allow"
struct_excessive_bools = "allow"
unused_self = "allow"
unnecessary_wraps = "allow"
needless_pass_by_value = "allow"
items_after_statements = "allow"
too_many_lines = "allow"
too_many_arguments = "allow"
let_and_return = "allow"
redundant_else = "allow"
single_match_else = "allow"
struct_field_names = "allow"
float_cmp = "allow"
module_inception = "allow"
manual_let_else = "allow"
format_push_string = "allow"
needless_continue = "allow"
unused_async = "allow"
missing_safety_doc = "allow"
undocumented_unsafe_blocks = "allow"
[profile.release]
lto = true
strip = true