forked from dorcyv/odoors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (28 loc) · 922 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
25
26
27
28
29
30
[package]
name = "async_odoors"
authors = ["Valerian DORCY <valerian.dorcy@gmail.com>", "serxoz <serxoz@protonmail.ch>"]
description = "Odoo JSON-RPC client async library"
homepage = "https://github.com/serxoz/async-odoors"
documentation = "https://github.com/serxoz/async-odoors"
repository = "https://github.com/serxoz/async-odoors"
keywords = ["odoo", "json-rpc", "async", "tokio"]
readme = "README.md"
license = "MIT"
version = "1.0.0"
edition = "2021"
exclude = [
"http/*",
".github",
]
[[bin]]
path = "examples/odoo.rs"
name = "odoors"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.12", features = ["json"] }
tokio = { version = "1.21.2", features = ["full"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = { version = "1.0.85" }
# serde_with = "1.12.1"
serde_with = "2.0.1"
rand = "0.8.5"