25 lines
368 B
TOML
25 lines
368 B
TOML
[package]
|
|
name = "rusted_iron_ring"
|
|
version = "0.1.0"
|
|
authors = ["Dece <shgck@pistache.land>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "ironring"
|
|
crate-type = ["lib", "cdylib"]
|
|
|
|
[[bin]]
|
|
name = "rir"
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
encoding_rs = "0.8"
|
|
flate2 = "1.0"
|
|
nom = "5"
|
|
num-bigint = "0.2"
|
|
num-traits = "0.2"
|
|
strum_macros = "0.18"
|
|
|
|
[workspace]
|
|
members = ["bindings/python"]
|