eagle/Cargo.toml

32 lines
611 B
TOML
Raw Normal View History

2024-06-19 23:25:45 +02:00
[package]
name = "eagle"
2024-06-20 11:45:17 +02:00
version = "0.2.0"
2024-06-19 23:25:45 +02:00
edition = "2021"
license = "AGPL-3.0"
2024-06-20 11:52:36 +02:00
publish = ["gitea"]
resolver = "2"
[features]
default = ["tcp"]
tcp = ["tokio/net"]
unix = ["tokio/net"]
2024-06-19 23:25:45 +02:00
[dependencies]
proc-macro2 = "1.0.85"
quote = "1.0.36"
2024-06-21 11:54:29 +02:00
rand = "0.8.5"
2024-06-21 15:54:48 +02:00
ron = "0.8.1"
2024-06-20 11:52:36 +02:00
serde = { version = "1.0.203", features = ["serde_derive"] }
2024-06-19 23:25:45 +02:00
syn = "2.0.66"
tokio = { version = "1.38.0", features = ["sync", "io-util"] }
[dev-dependencies]
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-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"