[package] name = "ontology" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] #nix = { version = "0.28.0", features = ["ptrace", "process", "fs", "poll"] } nix = { git = "https://github.com/rhelmot/nix-rs", branch = "master", features = ["ptrace", "process", "fs", "poll"] } #nix = { path = "../../rust/nix", features = ["ptrace", "process", "fs", "poll"] } linux-personality = "1.0.0" anyhow = { version = "1", features = ["backtrace"] } log = "0.4" env_logger = "0.11" serde = { version = "1", features = ["derive"] } serde_json = "1.0" clap = { version = "4.5.4", features = ["derive"] } sha2 = { version = "0.10" } walkdir = "2" hex = { version = "0.4.3", features = ["serde"] } gimli = { version = "0.29.0" } object = { version = "0.35" } memmap2 = { version = "0.9.4" } typed-arena = { version = "2" }