-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
16 lines (15 loc) · 887 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "switch-api-rs"
version = "0.1.0"
edition = "2021"
description = "REST server for switching macOS stuff via home-assistant.io"
repository = "https://github.com/ycardon/switch-api-rs"
author = "Yann Cardon"
license = "MIT"
[dependencies]
actix-web = "4" # Actix Web is a powerful, pragmatic, and extremely fast web framework
serde = { version = "1", features = ["derive"] } # A generic serialization/deserialization framework
regex = "1.5" # An implementation of regular expressions
env_logger = "0.9" # A logging implementation for `log` which is configured via an environment variable.
lazy_static = "1" # A macro for declaring lazily evaluated statics
sys-info = "0.9" # Get system information