eagle/Cargo.toml

38 lines
811 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]
2024-06-24 15:34:14 +02:00
default = ["tcp", "log"]
tcp = ["tokio/net"]
unix = ["tokio/net"]
2024-06-24 15:34:14 +02:00
log = ["dep:log", "dep:env_logger"]
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"] }
2024-06-24 15:34:14 +02:00
env_logger = { version = "0.11.3", optional = true }
log = { version = "0.4.21", optional = true }
[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-24 15:34:14 +02:00
env_logger = "0.11.3"
log = "0.4.21"
2024-06-24 18:26:19 +02:00
tokio-test = "0.4.4"
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"