forked from flipt-io/flipt-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (21 loc) · 788 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "flipt"
description = "Official Rust SDK for Flipt"
repository = "https://github.com/flipt-io/flipt-rust.git"
version = "0.5.0"
edition = "2021"
authors = ["Brett Buddin <[email protected]>", "Flipt Developers <[email protected]>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["flipt"]
[features]
flipt_integration = []
[dependencies]
anyhow = "1.0.66"
chrono = { version = "0.4.23", default-features = false, features = ["serde", "clock"] }
reqwest = { version = "0.11.13", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.89"
url = "2.3.1"
[dev-dependencies]
tokio = { version = "1.22.0", default-features = false, features = [ "macros", "rt-multi-thread", "time" ] }