-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
35 lines (32 loc) · 1.02 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
[package]
authors = [
"Theo B. <[email protected]>",
"Ankur S. <[email protected]>",
]
categories = ["development-tools", "command-line-utilities"]
description = "Your friendly neighborhood Avro schema compatibility checker."
documentation = "https://docs.rs/degauss"
edition = "2021"
homepage = "https://github.com/vertexclique/degauss"
keywords = ["schema-compatibility", "compatibility", "serialization"]
license = "Apache-2.0/MIT"
name = "degauss"
readme = "README.md"
repository = "https://github.com/vertexclique/degauss"
version = "0.1.8"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apache-avro = "0.14.0"
comfy-table = "6.0.0"
isahc = { version = "1.7", features = ["json", "static-ssl"] }
paw = "1.0"
serde_json = "1.0"
structopt = { version = "0.3", features = ["paw"] }
strum = { version = "0.23", features = ["derive"] }
strum_macros = "0.24.0"
thiserror = "1.0"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dev-dependencies]
rand = "0.8"