eagle/Cargo.toml
Kodi Craft d47f62cdbb
All checks were successful
Build library & run tests / docs (push) Successful in 2m20s
Build library & run tests / build (unix) (push) Successful in 2m23s
Build library & run tests / build (tcp) (push) Successful in 2m27s
Attempt to deal with task/memory leaks
2024-06-26 11:16:20 +02:00

39 lines
856 B
TOML

[package]
name = "eagle"
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>"]
license = "AGPL-3.0"
edition = "2021"
resolver = "2"
[features]
default = ["tcp", "log"]
tcp = []
unix = []
log = []
[dependencies]
proc-macro2 = "1.0.85"
quote = "1.0.36"
syn = "2.0.66"
[dev-dependencies]
# tokio = { version = "1.38.0", features = ["sync", "io-util"] }
ron = "0.8.1"
serde = { version = "1.0.203", features = ["serde_derive"] }
rand = "0.8.5"
tokio = { version = "1.38.0", features = ["sync", "rt-multi-thread", "macros", "time", "io-util", "net"] }
tokio-test = "0.4.4"
env_logger = { version = "0.11.3" }
log = { version = "0.4.21" }
console-subscriber = "0.3.0"
[lib]
proc-macro = true
[[test]]
name = "tests"
path = "tests/mod.rs"