You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
970 B

[package]
4 years ago
name = "u_lib"
version = "0.1.0"
authors = ["plazmoid <kronos44@mail.ru>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
4 years ago
serde = { version = "1.0.114", features = ["derive"] }
4 years ago
uuid = { version = "0.6.5", features = ["serde", "v4"] }
4 years ago
nix = "0.17"
libc = "^0.2"
4 years ago
lazy_static = "1.4.0"
tokio = { version = "1.2.0", features = ["rt-multi-thread", "sync", "macros", "process", "time"] }
reqwest = { version = "0.11", features = ["json"] }
4 years ago
futures = "0.3.5"
4 years ago
guess_host_triple = "0.1.2"
thiserror = "*"
log = "*"
env_logger = "0.8.3"
4 years ago
diesel-derive-enum = { version = "1", features = ["postgres"] }
4 years ago
chrono = "0.4.19"
strum = { version = "0.20", features = ["derive"] }
once_cell = "1.7.2"
shlex = "1.0.0"
u_api_proc_macro = { version = "*", path = "../u_api_proc_macro" }
4 years ago
[dependencies.diesel]
4 years ago
version = "1.4.5"
features = ["postgres", "uuid"]
[dev-dependencies]
test-case = "1.1.0"