canvas-rs/Cargo.toml

14 lines
486 B
TOML
Raw Normal View History

2024-10-14 00:18:50 -06:00
[package]
2024-10-16 01:40:11 -06:00
name = "canvas-rs"
2024-10-14 00:18:50 -06:00
version = "0.1.0"
edition = "2021"
[dependencies]
2024-10-16 01:40:11 -06:00
anyhow = "1.0.89"
bpaf = { version = "0.9.15", features = ["derive"] }
2024-10-14 00:18:50 -06:00
graphql_client = "0.14.0"
2024-10-16 01:40:11 -06:00
keyring = { version = "3.4.0", features = ["apple-native", "windows-native", "sync-secret-service"] }
reqwest = { version = "0.12.8", default-features = false, features = ["json", "rustls-tls-native-roots", "http2"] }
2024-10-14 00:18:50 -06:00
serde = "1.0.210"
2024-10-16 01:40:11 -06:00
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }