[package] name = "anu" description = "The sound distributed version control system." version = "1.0.0-alpha" authors = ["Pierre-Étienne Meunier "] edition = "2018" repository = "https://nest.anu.dev/anu/anu" license = "GPL-2.0" include = [ "Cargo.toml", "src", "src/commands", "src/commands/log.rs", "src/commands/protocol.rs", "src/commands/apply.rs", "src/commands/debug.rs", "src/commands/checkout.rs", "src/commands/file_operations.rs", "src/commands/clone.rs", "src/commands/git.rs", "src/commands/record.rs", "src/commands/change.rs", "src/commands/diff.rs", "src/commands/unrecord.rs", "src/commands/channel.rs", "src/commands/init.rs", "src/commands/mod.rs", "src/commands/archive.rs", "src/commands/reset.rs", "src/commands/fork.rs", "src/commands/pushpull.rs", "src/config.rs", "src/repository.rs", "src/main.rs", "src/remote", "src/remote/local.rs", "src/remote/ssh.rs", "src/remote/mod.rs", ] [features] git = [ "git2", "sanakirja/git2" ] default = [ ] [dependencies] human-panic = "1.0" clap = "3.0.0-beta.2" anyhow = "1.0" thiserror = "1.0" libanu = { version = "1.0.0-alpha", features = [ "tarball" ] } chrono = { version = "0.4" } ignore = "0.4" env_logger = "0.8" log = "0.4" serde = "1.0" serde_json = "1.0" serde_derive = "1.0" toml = "0.5" tokio = { version = "0.2", features = [ "rt-threaded", "macros", "sync" ] } thrussh = "0.29" thrussh-keys = "0.18" cryptovec = "0.5" reqwest = { version = "0.10", features = [ "stream" ] } byteorder = "1.3" sanakirja = "0.13.1" futures = "0.3" dirs = "3.0" lazy_static = "1.4" regex = "1.4" whoami = "0.9" rpassword = "5.0" git2 = { version = "0.13", optional = true } rand = "0.7" edit = "0.1" data-encoding = "2.3" futures-util = "0.3"