| 1234567891011121314151617181920212223242526272829 |
- [package]
- name = "dchat"
- version = "0.1.0"
- edition = "2021"
- description = "Demo chat to document darkfi net code"
- [dependencies]
- darkfi = {path = "../../", features = ["net", "rpc"]}
- # Async
- async-std = "1.12.0"
- async-trait = "0.1.57"
- async-executor = "1.4.1"
- async-channel = "1.7.1"
- easy-parallel = "3.2.0"
- smol = "1.2.5"
- num_cpus = "1.13.1"
- # Misc
- log = "0.4.17"
- simplelog = "0.12.0"
- url = "2.2.2"
- # Encoding and parsing
- serde_json = "1.0.85"
- serde = {version = "1.0.144", features = ["derive"]}
- toml = "0.5.9"
|