-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplatforms.toml
More file actions
111 lines (100 loc) · 2.99 KB
/
Copy pathplatforms.toml
File metadata and controls
111 lines (100 loc) · 2.99 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[meta]
binary_name = "memorph"
version_source = "Cargo.toml"
[[platforms]]
id = "darwin-arm64"
target = "aarch64-apple-darwin"
os = "darwin"
cpu = "arm64"
artifact_binary = "memorph"
npm_package = "memorph-bin-darwin-arm64"
npm_dir = "memorph-bin-darwin-arm64"
python_package = "memorph-bin-darwin-arm64"
python_module = "memorph_bin_darwin_arm64"
python_marker = "platform_system == 'Darwin' and platform_machine == 'arm64'"
[[platforms]]
id = "darwin-x64"
target = "x86_64-apple-darwin"
os = "darwin"
cpu = "x64"
artifact_binary = "memorph"
npm_package = "memorph-bin-darwin-x64"
npm_dir = "memorph-bin-darwin-x64"
python_package = "memorph-bin-darwin-x64"
python_module = "memorph_bin_darwin_x64"
python_marker = "platform_system == 'Darwin' and platform_machine == 'x86_64'"
[[platforms]]
id = "linux-x64-gnu"
target = "x86_64-unknown-linux-musl"
os = "linux"
cpu = "x64"
artifact_binary = "memorph"
npm_package = "memorph-bin-linux-x64-gnu"
npm_dir = "memorph-bin-linux-x64-gnu"
python_package = "memorph-bin-linux-x64-gnu"
python_module = "memorph_bin_linux_x64_gnu"
python_marker = "platform_system == 'Linux' and platform_machine == 'x86_64'"
[[platforms]]
id = "linux-arm64-gnu"
target = "aarch64-unknown-linux-gnu"
os = "linux"
cpu = "arm64"
artifact_binary = "memorph"
npm_package = "memorph-bin-linux-arm64-gnu"
npm_dir = "memorph-bin-linux-arm64-gnu"
python_package = "memorph-bin-linux-arm64-gnu"
python_module = "memorph_bin_linux_arm64_gnu"
python_marker = "platform_system == 'Linux' and platform_machine == 'aarch64'"
[[platforms]]
id = "win32-x64-msvc"
target = "x86_64-pc-windows-msvc"
os = "win32"
cpu = "x64"
artifact_binary = "memorph.exe"
npm_package = "memorph-bin-win32-x64-msvc"
npm_dir = "memorph-bin-win32-x64-msvc"
python_package = "memorph-bin-win32-x64-msvc"
python_module = "memorph_bin_win32_x64_msvc"
python_marker = "platform_system == 'Windows' and platform_machine == 'AMD64'"
[[desktop_targets]]
platform_id = "darwin-arm64"
target = "aarch64-apple-darwin"
runner = "macos-15"
bundle = "dmg"
extension = ".dmg"
filename_markers = ["aarch64", "arm64"]
[[desktop_targets]]
platform_id = "linux-x64-gnu"
target = "x86_64-unknown-linux-gnu"
runner = "ubuntu-22.04"
bundle = "deb"
extension = ".deb"
filename_markers = ["amd64", "x86_64"]
[[desktop_targets]]
platform_id = "linux-x64-gnu"
target = "x86_64-unknown-linux-gnu"
runner = "ubuntu-22.04"
bundle = "appimage"
extension = ".AppImage"
filename_markers = ["amd64", "x86_64"]
[[desktop_targets]]
platform_id = "linux-arm64-gnu"
target = "aarch64-unknown-linux-gnu"
runner = "ubuntu-22.04-arm"
bundle = "deb"
extension = ".deb"
filename_markers = ["arm64", "aarch64"]
[[desktop_targets]]
platform_id = "linux-arm64-gnu"
target = "aarch64-unknown-linux-gnu"
runner = "ubuntu-22.04-arm"
bundle = "appimage"
extension = ".AppImage"
filename_markers = ["arm64", "aarch64"]
[[desktop_targets]]
platform_id = "win32-x64-msvc"
target = "x86_64-pc-windows-msvc"
runner = "windows-latest"
bundle = "nsis"
extension = ".exe"
filename_markers = ["x64", "amd64", "setup"]