-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 1.05 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
[package]
name = "wechat-multi"
version = "0.1.1"
edition = "2021"
authors = ["hangj <[email protected]>"]
readme = "README.md"
description = "Mac 版微信多开"
license = "MIT"
repository = "https://github.com/hangj/wechat-multi"
documentation = "https://docs.rs/wechat-multi/"
exclude = ["/.github/*", "/.gitattributes", "/appveyor.yml", "/Changelog.md", "/clippy.toml", "/codecov.yml"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.81"
disarm64 = "0.1.19"
iced-x86 = "1.21.0"
mach_object = "0.1.17"
memmap = "0.7.0"
[profile.release]
# strip binary is PATH dependent which breaks builds in MacOS
# https://www.reddit.com/r/rust/comments/1bn5ubs/all_cargo_installs_in_latest_rust_version_1770/
# https://github.com/rust-lang/rust/issues/123114
# https://github.com/rust-lang/rust/issues/122902#issuecomment-2016033638
# https://github.com/NixOS/nixpkgs/issues/299606
strip = "none" # This is a workaround for now
[patch.crates-io]
# disarm64 = {git = "https://github.com/hangj/disarm64"}