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"]
|
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"
|
2024-06-21 11:28:46 +02:00
|
|
|
# TODO: rt and macros should be removed unless we do tests
|
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
|
2024-06-20 11:34:04 +02:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "tests"
|
2024-06-20 11:52:36 +02:00
|
|
|
path = "tests/mod.rs"
|