eagle/Cargo.toml

38 lines
827 B
TOML
Raw Permalink Normal View History

2024-06-19 23:25:45 +02:00
[package]
name = "eagle"
2024-06-25 18:19:35 +02:00
version = "0.3.0"
description = "A simple library for creating RPC protocols."
repository = "https://git.colon-three.com/kodi/eagle"
authors = ["KodiCraft <kodi@kdcf.me>"]
2024-06-19 23:25:45 +02:00
license = "AGPL-3.0"
edition = "2021"
resolver = "2"
[features]
2024-06-24 15:34:14 +02:00
default = ["tcp", "log"]
2024-06-25 11:43:04 +02:00
tcp = []
unix = []
log = []
2024-06-19 23:25:45 +02:00
[dependencies]
proc-macro2 = "1.0.85"
quote = "1.0.36"
syn = "2.0.66"
[dev-dependencies]
2024-06-25 11:43:04 +02:00
# tokio = { version = "1.38.0", features = ["sync", "io-util"] }
ron = "0.8.1"
serde = { version = "1.0.203", features = ["serde_derive"] }
2024-06-24 21:29:48 +02:00
rand = "0.8.5"
2024-06-21 15:54:48 +02:00
tokio = { version = "1.38.0", features = ["sync", "rt-multi-thread", "macros", "time", "io-util", "net"] }
2024-06-24 18:26:19 +02:00
tokio-test = "0.4.4"
2024-06-25 11:43:04 +02:00
env_logger = { version = "0.11.3" }
log = { version = "0.4.21" }
2024-06-19 23:25:45 +02:00
[lib]
proc-macro = true
[[test]]
name = "tests"
2024-06-20 11:52:36 +02:00
path = "tests/mod.rs"