summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2021-04-10refactor: main function for clarityLars Wirzenius1-13/+14
2021-04-10refactor: have ClientConfigWithoutPasswords know its filenameLars Wirzenius3-9/+5
2021-04-10refactor: struct ShowConfig subcommandLars Wirzenius3-11/+15
2021-04-10refactor: struct GetChunk subcommandLars Wirzenius3-17/+22
2021-04-10refactor: struct Restore subcommandLars Wirzenius3-35/+46
2021-04-10refactor: struct ListFiles subcommandLars Wirzenius3-19/+24
2021-04-10refactor: struct ShowGeneration subcommandLars Wirzenius3-29/+34
2021-04-10refactor: struct List subcommandLars Wirzenius3-13/+18
2021-04-10refactor: struct Backup subcommandLars Wirzenius3-19/+24
2021-04-10refactor: struct Init subcommandLars Wirzenius3-34/+33
2021-04-10refactor: move ClientConfig into its own moduleLars Wirzenius14-131/+140
2021-04-09refactor: move function to better placeLars Wirzenius1-13/+13
2021-04-09feat: add "obnam init" subcommandLars Wirzenius10-32/+215
2021-04-06refactor: clean up initial and incremental backup code paths a bitLars Wirzenius1-14/+16
2021-04-06fix: finish off and clear the incremental backup progress barLars Wirzenius1-0/+1
2021-04-06chore: clean up unnecessary use of ? based on clippy reportsLars Wirzenius1-6/+6
2021-03-27refactor: don't return Result if main can't failLars Wirzenius1-3/+1
2021-03-27refactor: rename BackupPoliy::new() to more idiomatic ::default()Lars Wirzenius2-2/+2
2021-03-27refactor: use idiomatic .is_empty() instead of comparing lengthLars Wirzenius1-1/+1
2021-03-27refactor: use .cloned() to clone items in an iteratorLars Wirzenius2-2/+2
2021-03-27refactor: drop unnecessary clonesLars Wirzenius2-3/+3
2021-03-27refactor: drop unused lifetime annotationLars Wirzenius1-1/+1
2021-03-27refactor: return assigned value directlyLars Wirzenius1-2/+1
2021-03-27refactor: drop unnecessary conversions to the same typeLars Wirzenius5-12/+12
2021-03-27refactor: use Option::or_else to avoid unnecessary allocationLars Wirzenius1-1/+4
2021-03-27refactor: use matches! for clarityLars Wirzenius1-4/+1
2021-03-27refactor: rename ChunkId::from_str to ChunkId::recreateLars Wirzenius4-6/+7
2021-03-27refactor: don't return a Result from function that can't failLars Wirzenius1-7/+17
2021-03-27refactor: drop unnecessary cloneLars Wirzenius1-1/+1
2021-03-27refactor: drop unnecessary referenceLars Wirzenius1-1/+1
2021-03-27refactor: avoid confusing function name from_strLars Wirzenius2-2/+2
2021-03-24refactor: switch from dirs crate to directories-nextLars Wirzenius1-5/+8
2021-03-24chore: use warp's bytes instead of bytes crate directlyLars Wirzenius1-1/+1
2021-03-24refactor(src/server.rs): drop use of anyhow::ResultLars Wirzenius1-3/+12
2021-03-12feat: handle files in directories that can be read but not executedLars Wirzenius2-8/+7
2021-03-12feat: show warnings for any problems backing up filesLars Wirzenius2-15/+44
2021-03-12fix: backup and restore of symlinkLars Wirzenius2-5/+3
2021-03-06perf: report wall clock time for warmup and hot lookupsLars Wirzenius2-0/+12
2021-03-05perf: allow benchmark-indexedstore do lookups by checksumLars Wirzenius1-9/+68
2021-03-05perf: allow benchmark-index to do lookups by checksumLars Wirzenius1-15/+67
2021-03-05fix: generate deterministic chunk ids for benchmarksLars Wirzenius1-1/+1
2021-03-03refactor: drop unnecessary derives for config structsLars Wirzenius1-2/+2
2021-03-03fix: don't allow unknown fields in configuration filesLars Wirzenius2-0/+2
2021-03-03fix: remove duplicate error message printingLars Wirzenius1-1/+0
2021-03-03refactor: rename Config, ConfigError to show they are for serverLars Wirzenius2-12/+12
2021-03-03feat: in errors about reading a configuration file, include its nameLars Wirzenius2-7/+33
2021-03-03fix: allow generation temporary files to be automatically deletedLars Wirzenius4-97/+53
2021-03-03feat: store user and group who own each fileLars Wirzenius1-0/+30
2021-02-23feat: have separate progress bar for each backup phaseLars Wirzenius3-17/+75
2021-02-19feat: backup and restore named pipes (FIFOs)Lars Wirzenius4-1/+25