eagle/Cargo.toml
Kodi Craft 15d44b6daa
Some checks failed
Build library & run tests / build (push) Failing after 22s
Add code to create a client connected to the network
2024-06-22 12:57:41 +02:00

32 lines
611 B
TOML

[package]
name = "eagle"
version = "0.2.0"
edition = "2021"
license = "AGPL-3.0"
publish = ["gitea"]
resolver = "2"
[features]
default = ["tcp"]
tcp = ["tokio/net"]
unix = ["tokio/net"]
[dependencies]
proc-macro2 = "1.0.85"
quote = "1.0.36"
rand = "0.8.5"
ron = "0.8.1"
serde = { version = "1.0.203", features = ["serde_derive"] }
syn = "2.0.66"
tokio = { version = "1.38.0", features = ["sync", "io-util"] }
[dev-dependencies]
tokio = { version = "1.38.0", features = ["sync", "rt-multi-thread", "macros", "time", "io-util", "net"] }
[lib]
proc-macro = true
[[test]]
name = "tests"
path = "tests/mod.rs"