| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- [package]
- name = "receqif"
- version = "0.1.0"
- authors = ["Slava Barinov <rayslava@gmail.com>"]
- edition = "2021"
- [dependencies]
- serde = { version = "1.0", features = ["derive"] }
- serde_json = "1.0"
- qif_generator = "0.1.7"
- chrono = "0.4"
- pickledb = "0.4.1"
- csv = "1.1"
- structopt = "0.3"
- shellexpand = "2.1"
- radix_trie = { version = "0.2", features = ["serde"] }
- libc = { version = "0.2" }
- const_format = "0.2"
- futures = { version = "0.3.0", optional = true }
- teloxide = { version = "0.12.2", features = ["auto-send", "macros", "bincode-serializer"], optional = true }
- anyhow = { version = "1.0.52", optional = true }
- log = { version = "0.4.8", optional = true }
- pretty_env_logger = { version = "0.4.0", optional = true }
- tokio = { version = "1.3", features = ["rt-multi-thread", "macros", "time"], optional = true }
- tokio-stream = { version = "0.1.8", optional = true }
- derive_more = { version = "0.99.13", optional = true }
- thiserror = { version = "1.0.24", optional = true }
- rustyline = "9.1.2"
- rustyline-derive = "0.6.0"
- warp = { version = "0.3", optional = true }
- prometheus = { version = "0.13", features = ["process"], optional = true }
- lazy_static = { version = "1.4", optional = true }
- rand = { version = "0.8", optional = true }
- [build-dependencies]
- cc = { version = "1.0", optional = true }
- pkg-config = { version = "0.3", optional = true }
- [dev-dependencies]
- reqwest = "0.11"
- [features]
- default = [ "telegram" ]
- tv = [ "cc", "pkg-config" ]
- telegram = [ "teloxide", "log", "pretty_env_logger", "tokio", "tokio-stream", "derive_more", "thiserror", "futures", "anyhow" ]
- monitoring = [ "warp", "prometheus", "lazy_static", "futures", "rand" ]
- docker = [ "monitoring" ]
|