20 lines
No EOL
425 B
TOML
20 lines
No EOL
425 B
TOML
[package]
|
|
name = "wolves-oxidised"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
# this is for anythign in dev and not finalised yet
|
|
unstable = []
|
|
|
|
[dependencies]
|
|
# for making teh requests
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
# for testing async stuff
|
|
tokio-test = "0.4"
|
|
|
|
|
|
# parsing teh results
|
|
serde_json = { version = "1.0", features = ["raw_value"] }
|
|
serde = { version = "1.0.215", features = ["derive"] } |