-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (41 loc) · 980 Bytes
/
Cargo.toml
File metadata and controls
46 lines (41 loc) · 980 Bytes
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
[package]
name = "rampp"
version = "1.3.1"
edition = "2021"
description = "Deterministic local dev stack manager for Windows (Apache + MySQL + PHP + PHPMyAdmin)"
license = "GPL-3.0-only"
repository = "https://github.com/rbenzing/RAMPP"
readme = "README.md"
keywords = ["windows", "apache", "mysql", "php", "devstack"]
categories = ["development-tools"]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
crossbeam-channel = "0.5"
log = "0.4"
env_logger = "0.11"
ureq = "2"
eframe = "0.27"
egui = "0.27"
tray-item = "0.9"
[dependencies.windows]
version = "0.56"
features = [
"Win32_System_JobObjects",
"Win32_Foundation",
"Win32_System_Threading",
"Win32_System_Console",
"Win32_Networking_WinSock",
"Win32_Security",
"Win32_System_IO",
"Win32_UI_WindowsAndMessaging",
]
[build-dependencies]
winres = "0.1"
[dev-dependencies]
proptest = "1"
tempfile = "3"
[profile.release]
opt-level = 3
strip = true