2019-06-07 06:29:13 +03:00
|
|
|
[package]
|
|
|
|
name = "avml"
|
2023-11-20 19:31:17 +03:00
|
|
|
version = "0.14.0"
|
2019-06-07 06:29:13 +03:00
|
|
|
license = "MIT"
|
|
|
|
description = "A portable volatile memory acquisition tool"
|
2019-06-14 20:49:50 +03:00
|
|
|
authors = ["avml@microsoft.com"]
|
2019-06-07 06:29:13 +03:00
|
|
|
keywords = ["linux", "memory-forensics", "security"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
homepage = "https://github.com/microsoft/avml"
|
|
|
|
repository = "https://github.com/microsoft/avml"
|
|
|
|
readme = "README.md"
|
2021-11-16 00:28:45 +03:00
|
|
|
edition = "2021"
|
2023-10-02 22:07:03 +03:00
|
|
|
rust-version = "1.70.0"
|
2019-06-07 06:29:13 +03:00
|
|
|
|
|
|
|
[features]
|
2023-08-16 18:51:08 +03:00
|
|
|
default = ["put", "blobstore", "native-tls"]
|
|
|
|
put = ["dep:reqwest", "reqwest?/stream", "dep:url", "dep:tokio", "dep:tokio-util"]
|
|
|
|
blobstore = ["dep:url", "dep:azure_core", "dep:azure_storage_blobs", "dep:tokio", "dep:tokio-util", "dep:async-channel"]
|
2023-01-25 20:54:01 +03:00
|
|
|
status = ["dep:atty", "dep:indicatif"]
|
2023-08-16 18:51:08 +03:00
|
|
|
native-tls = ["dep:native-tls"]
|
2019-06-07 06:29:13 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-10 18:30:59 +03:00
|
|
|
byteorder = "1.5"
|
2024-08-16 17:34:56 +03:00
|
|
|
bytes = "1.7"
|
2024-06-11 15:41:10 +03:00
|
|
|
clap = {version="4.5", default-features=false, features=["derive", "std", "usage", "error-context", "help"]}
|
2022-11-15 17:53:03 +03:00
|
|
|
elf = "0.7"
|
2022-10-27 21:38:13 +03:00
|
|
|
futures = "0.3"
|
2024-03-15 23:49:18 +03:00
|
|
|
http = "1.1"
|
2022-11-28 19:09:59 +03:00
|
|
|
snap = "1.1"
|
2022-02-04 22:12:06 +03:00
|
|
|
thiserror = "1.0"
|
2023-01-20 04:13:10 +03:00
|
|
|
libc = "0.2"
|
2022-10-27 21:38:13 +03:00
|
|
|
|
2024-05-23 17:16:28 +03:00
|
|
|
async-channel = {version="2.3", optional=true}
|
2022-10-27 21:38:13 +03:00
|
|
|
atty = {version="0.2", optional=true}
|
2024-04-24 23:15:48 +03:00
|
|
|
azure_core = {version="0.20", optional=true}
|
|
|
|
azure_storage_blobs = {version="0.20", optional=true}
|
2022-10-27 21:38:13 +03:00
|
|
|
indicatif = {version="0.17", optional=true}
|
2022-09-27 17:25:52 +03:00
|
|
|
native-tls = {version="0.2", features=["vendored"], optional=true}
|
2024-03-22 16:31:58 +03:00
|
|
|
reqwest = {version="0.12", optional=true}
|
2024-09-16 17:37:14 +03:00
|
|
|
tokio = {version="1.40", default-features=false, optional=true, features=["fs", "rt-multi-thread"]}
|
2022-10-27 21:38:13 +03:00
|
|
|
tokio-util = {version="0.7", features=["codec"], optional=true}
|
2023-11-27 18:18:06 +03:00
|
|
|
url = {version="2.5", optional=true}
|
2019-06-07 06:29:13 +03:00
|
|
|
|
2023-01-20 04:13:10 +03:00
|
|
|
[dev-dependencies]
|
2024-09-16 16:53:32 +03:00
|
|
|
insta = {version="1.40", features=["json"]}
|
2023-01-20 04:13:10 +03:00
|
|
|
|
2019-06-07 06:29:13 +03:00
|
|
|
[profile.release]
|
|
|
|
opt-level="z"
|
|
|
|
lto=true
|
2019-06-14 20:49:50 +03:00
|
|
|
panic="abort"
|
2022-02-04 22:21:24 +03:00
|
|
|
codegen-units=1
|
2021-11-16 01:20:37 +03:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "avml-upload"
|
2022-06-17 20:51:36 +03:00
|
|
|
required-features = ["put", "blobstore"]
|