15 lines
349 B
TOML
15 lines
349 B
TOML
[package]
|
|
name = "sway-ipc"
|
|
version = "0.1.0"
|
|
authors = ["Michael Lindman <michael.lindman@gmail.com>"]
|
|
edition = "2021"
|
|
description = "ipc library for sway"
|
|
repository = "git.0cd.xyz/michael/sway-ipc"
|
|
license-file = "LICENSE"
|
|
|
|
[profile.release]
|
|
strip = "symbols"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0" |