{"id":13450949,"url":"https://github.com/abseil/abseil-cpp","last_synced_at":"2026-01-07T21:19:56.080Z","repository":{"id":37390843,"uuid":"104231541","full_name":"abseil/abseil-cpp","owner":"abseil","description":"Abseil Common Libraries (C++)","archived":false,"fork":false,"pushed_at":"2025-03-19T22:23:53.000Z","size":18658,"stargazers_count":15617,"open_issues_count":190,"forks_count":2729,"subscribers_count":596,"default_branch":"master","last_synced_at":"2025-03-21T00:05:23.428Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://abseil.io","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abseil.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-09-20T15:10:30.000Z","updated_at":"2025-03-20T16:22:16.000Z","dependencies_parsed_at":"2023-10-28T12:37:11.598Z","dependency_job_id":"307b886e-f1f4-41f6-a30c-28b3113b6e5d","html_url":"https://github.com/abseil/abseil-cpp","commit_stats":{"total_commits":2293,"total_committers":236,"mean_commits":9.716101694915254,"dds":0.4749236807675534,"last_synced_commit":"b92128a4bd9c99bc0c85b4759c688a857b7f625d"},"previous_names":[],"tags_count":49,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abseil%2Fabseil-cpp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abseil%2Fabseil-cpp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abseil%2Fabseil-cpp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abseil%2Fabseil-cpp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abseil","download_url":"https://codeload.github.com/abseil/abseil-cpp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245149323,"owners_count":20568875,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-31T07:00:40.739Z","updated_at":"2026-01-07T21:19:56.051Z","avatar_url":"https://github.com/abseil.png","language":"C++","readme":"# Abseil - C++ Common Libraries\n\nThe repository contains the Abseil C++ library code. Abseil is an open-source\ncollection of C++ code (compliant to C++17) designed to augment the C++\nstandard library.\n\n## Table of Contents\n\n- [About Abseil](#about)\n- [Quickstart](#quickstart)\n- [Building Abseil](#build)\n- [Support](#support)\n- [Codemap](#codemap)\n- [Releases](#releases)\n- [License](#license)\n- [Links](#links)\n\n\u003ca name=\"about\"\u003e\u003c/a\u003e\n## About Abseil\n\nAbseil is an open-source collection of C++ library code designed to augment\nthe C++ standard library. The Abseil library code is collected from Google's\nown C++ code base, has been extensively tested and used in production, and\nis the same code we depend on in our daily coding lives.\n\nIn some cases, Abseil provides pieces missing from the C++ standard; in\nothers, Abseil provides alternatives to the standard for special needs\nwe've found through usage in the Google code base. We denote those cases\nclearly within the library code we provide you.\n\nAbseil is not meant to be a competitor to the standard library; we've\njust found that many of these utilities serve a purpose within our code\nbase, and we now want to provide those resources to the C++ community as\na whole.\n\n\u003ca name=\"quickstart\"\u003e\u003c/a\u003e\n## Quickstart\n\nIf you want to just get started, make sure you at least run through the\n[Abseil Quickstart](https://abseil.io/docs/cpp/quickstart). The Quickstart\ncontains information about setting up your development environment, downloading\nthe Abseil code, running tests, and getting a simple binary working.\n\n\u003ca name=\"build\"\u003e\u003c/a\u003e\n## Building Abseil\n\n[Bazel](https://bazel.build) and [CMake](https://cmake.org/) are the official\nbuild systems for Abseil.\nSee the [quickstart](https://abseil.io/docs/cpp/quickstart) for more information\non building Abseil using the Bazel build system.\nIf you require CMake support, please check the [CMake build\ninstructions](CMake/README.md) and [CMake\nQuickstart](https://abseil.io/docs/cpp/quickstart-cmake).\n\n\u003ca name=\"support\"\u003e\u003c/a\u003e\n## Support\n\nAbseil follows Google's [Foundational C++ Support\nPolicy](https://opensource.google/documentation/policies/cplusplus-support). See\n[this\ntable](https://github.com/google/oss-policies-info/blob/main/foundational-cxx-support-matrix.md)\nfor a list of currently supported versions compilers, platforms, and build\ntools.\n\n\u003ca name=\"codemap\"\u003e\u003c/a\u003e\n## Codemap\n\nAbseil contains the following C++ library components:\n\n* [`base`](absl/base/)\n  \u003cbr /\u003e The `base` library contains initialization code and other code which\n  all other Abseil code depends on. Code within `base` may not depend on any\n  other code (other than the C++ standard library).\n* [`algorithm`](absl/algorithm/)\n  \u003cbr /\u003e The `algorithm` library contains additions to the C++ `\u003calgorithm\u003e`\n  library and container-based versions of such algorithms.\n* [`cleanup`](absl/cleanup/)\n  \u003cbr /\u003e The `cleanup` library contains the control-flow-construct-like type\n  `absl::Cleanup` which is used for executing a callback on scope exit.\n* [`container`](absl/container/)\n  \u003cbr /\u003e The `container` library contains additional STL-style containers,\n  including Abseil's unordered \"Swiss table\" containers.\n* [`crc`](absl/crc/) The `crc` library contains code for\n  computing error-detecting cyclic redundancy checks on data.\n* [`debugging`](absl/debugging/)\n  \u003cbr /\u003e The `debugging` library contains code useful for enabling leak\n  checks, and stacktrace and symbolization utilities.\n* [`flags`](absl/flags/)\n  \u003cbr /\u003e The `flags` library contains code for handling command line flags for\n  libraries and binaries built with Abseil.\n* [`hash`](absl/hash/)\n  \u003cbr /\u003e The `hash` library contains the hashing framework and default hash\n  functor implementations for hashable types in Abseil.\n* [`log`](absl/log/)\n  \u003cbr /\u003e The `log` library contains `LOG` and `CHECK` macros and facilities\n  for writing logged messages out to disk, `stderr`, or user-extensible\n  destinations.\n* [`memory`](absl/memory/)\n  \u003cbr /\u003e The `memory` library contains memory management facilities that augment\n  C++'s `\u003cmemory\u003e` library.\n* [`meta`](absl/meta/)\n  \u003cbr /\u003e The `meta` library contains type checks\n  similar to those available in the C++ `\u003ctype_traits\u003e` library.\n* [`numeric`](absl/numeric/)\n  \u003cbr /\u003e The `numeric` library contains 128-bit integer types as well as\n  implementations of C++20's bitwise math functions.\n* [`profiling`](absl/profiling/)\n  \u003cbr /\u003e The `profiling` library contains utility code for profiling C++\n  entities.  It is currently a private dependency of other Abseil libraries.\n* [`random`](absl/random/)\n  \u003cbr /\u003e The `random` library contains functions for generating pseudorandom\n  values.\n* [`status`](absl/status/)\n  \u003cbr /\u003e The `status` library contains abstractions for error handling,\n  specifically `absl::Status` and `absl::StatusOr\u003cT\u003e`.\n* [`strings`](absl/strings/)\n  \u003cbr /\u003e The `strings` library contains a variety of strings routines and\n  utilities.\n* [`synchronization`](absl/synchronization/)\n  \u003cbr /\u003e The `synchronization` library contains concurrency primitives (Abseil's\n  `absl::Mutex` class, an alternative to `std::mutex`) and a variety of\n  synchronization abstractions.\n* [`time`](absl/time/)\n  \u003cbr /\u003e The `time` library contains abstractions for computing with absolute\n  points in time, durations of time, and formatting and parsing time within\n  time zones.\n* [`types`](absl/types/)\n  \u003cbr /\u003e The `types` library contains non-container utility types.\n* [`utility`](absl/utility/)\n  \u003cbr /\u003e The `utility` library contains utility and helper code.\n\n\u003ca name=\"releases\"\u003e\u003c/a\u003e\n## Releases\n\nAbseil recommends users \"live-at-head\" (update to the latest commit from the\nmaster branch as often as possible). However, we realize this philosophy doesn't\nwork for every project, so we also provide [Long Term Support\nReleases](https://github.com/abseil/abseil-cpp/releases) to which we backport\nfixes for severe bugs. See our [release\nmanagement](https://abseil.io/about/releases) document for more details.\n\n\u003ca name=\"license\"\u003e\u003c/a\u003e\n## License\n\nThe Abseil C++ library is licensed under the terms of the Apache\nlicense. See [LICENSE](LICENSE) for more information.\n\n\u003ca name=\"links\"\u003e\u003c/a\u003e\n## Links\n\nFor more information about Abseil:\n\n* Consult our [Abseil Introduction](https://abseil.io/about/intro)\n* Read [Why Adopt Abseil](https://abseil.io/about/philosophy) to understand our\n  design philosophy.\n* Peruse our\n  [Abseil Compatibility Guarantees](https://abseil.io/about/compatibility) to\n  understand both what we promise to you, and what we expect of you in return.\n","funding_links":[],"categories":["Frameworks","C++","Uncategorized","C++ (70)","C++ Foundation Libraries","C/C++ 程序设计","Libraries \u0026 Frameworks:","Repos","Libraries","Resources"],"sub_categories":["Uncategorized","C++ Data Structures and Algorithms","网络服务_其他","Other","Projects"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabseil%2Fabseil-cpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabseil%2Fabseil-cpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabseil%2Fabseil-cpp/lists"}