Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish relevant crate names #5

Draft
wants to merge 45 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
4af6146
Deliver libddprof_ffi as a shared library (#22)
nsavoire Feb 15, 2022
8e2246e
Bump version to 0.4.0-rc.1 (#25)
r1viollet Feb 21, 2022
16b5a77
Add support for packaging shared library for Ruby on x86-64 Linux and…
ivoanjo Feb 22, 2022
2f588cf
Fix `ffi-build.sh: line 78: fix_macos_rpath: unbound variable` issue …
ivoanjo Feb 22, 2022
eaf1e5f
Ship debug information in a separate file from the shared library (#29)
ivoanjo Feb 23, 2022
c7d3570
RFC: Introduce `ddprof_ffi_Buffer_from_byte_slice` function to enable…
ivoanjo Feb 24, 2022
52322bb
Increase reported profile timestamp precision (#31)
ivoanjo Mar 9, 2022
06e9611
[PROF-4780] Breaking change: Change FFI File struct to contain a Buff…
ivoanjo Mar 11, 2022
63bef61
Switch ddprof http client (#32)
paullegranddc Mar 15, 2022
89f8ef8
Fix clippy lints,expose dependencies of API, remove unused Exporter A…
morrisonlevi Mar 18, 2022
a4de688
Add helper for creating CharSlice from a string literal (#36)
ivoanjo Mar 21, 2022
e2bf03e
Fix tests (#37)
morrisonlevi Mar 21, 2022
6454bce
Note the upgrade to Rust 1.56
morrisonlevi Mar 22, 2022
8c87c09
Bump version to v0.5.0-rc.1 (#38)
morrisonlevi Mar 24, 2022
2bbd55c
Ruby updates: 0.5.0 packaging + package arm64 + change fallback packa…
ivoanjo Mar 29, 2022
88277c1
Allow sending tags when building the HTTP request (#40)
morrisonlevi Mar 31, 2022
e6d6574
Add Vec type, remove Buffer, add SendResult_drop (#41)
morrisonlevi Mar 31, 2022
a311381
Return SerializeResult for serializing a profile (#42)
morrisonlevi Mar 31, 2022
da6864e
Github CI lint and and tests (#46)
pawelchcki Apr 12, 2022
079d96a
Cleanup slices, strings, tags, and vecs (#44)
morrisonlevi Apr 12, 2022
19b92af
Refactoring of https connector to make root certificates optional (#47)
pawelchcki Apr 13, 2022
baea3a4
Add missing copyright headers (#51)
pawelchcki Apr 13, 2022
c84b2ec
Enhance Tags API (#49)
morrisonlevi Apr 13, 2022
c64a3e3
Bump version to 0.6.0-rc.1 (#53)
r1viollet Apr 14, 2022
c5dcf33
Asynchronous cancellation for ddprof_ffi_ProfileExporterV3_send (#45)
ivoanjo Apr 14, 2022
bb2f6e4
Fix license check
r1viollet Apr 14, 2022
bfc2654
Import simple telemetry implementation without native_deps and langua…
pawelchcki Apr 15, 2022
7cb9f7e
Fix failing gitlab CI lints (#57)
paullegranddc Apr 21, 2022
eb5b0e8
Add more lints to correspond with existing build system (#58)
pawelchcki Apr 21, 2022
85be26e
Test rust 1.56.1 compatibility (#54)
pawelchcki Apr 21, 2022
6dbf2eb
Initial version of CODEOWNERS (#52)
pawelchcki Apr 21, 2022
be43188
Fix license paths
morrisonlevi Apr 21, 2022
a82bd9c
Release v0.6.0
morrisonlevi Apr 21, 2022
0711e0d
Fix inconsistency between `SendResult` and other results (#60)
ivoanjo Apr 26, 2022
4b305cd
Package 0.6.0 release for Ruby (#59)
ivoanjo May 3, 2022
0ebe874
Grab the datadog-profiler crate
r1viollet May 6, 2022
2d5ceb9
Define license to prevent upload error
r1viollet May 6, 2022
a71832a
Create an empty datadog telemetry crate
r1viollet May 6, 2022
6fc2342
Adding placeholder crates for Datadog
r1viollet May 6, 2022
e4eab02
Fix duplicated description in crate
r1viollet May 6, 2022
ca7d337
Remove existing apm crate
r1viollet May 6, 2022
5ed73fd
Fix missing license
r1viollet May 6, 2022
13022e3
Merge remote-tracking branch 'libdd/main' into m
pawelchcki May 10, 2022
7dbf423
Merge branch 'm' into r1viollet/publish_crates
pawelchcki May 10, 2022
8ba99f7
Create placeholder for `datadog-profiling` crate
ivoanjo Aug 9, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ members = [
"ddprof-profiles",
"ddcommon",
"ddtelemetry",
# After this comment: placeholder crates for now
"datadog-profiler",
"datadog-profiling",
"datadog-telemetry",
"datadog-internal-telemetry",
"datadog-appsec",
"datadog-asm",
"datadog-waf",
"datadog-remote-configuration",
"datadog-remote-config",
"libdatadog",
]

[profile.dev]
Expand Down
10 changes: 10 additions & 0 deletions datadog-appsec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "datadog-appsec"
version = "0.1.0"
edition = "2021"
description = "An empty Datadog crate"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
8 changes: 8 additions & 0 deletions datadog-appsec/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
10 changes: 10 additions & 0 deletions datadog-asm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "datadog-asm"
version = "0.1.0"
edition = "2021"
description = "An empty Datadog crate"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
8 changes: 8 additions & 0 deletions datadog-asm/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
10 changes: 10 additions & 0 deletions datadog-internal-telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "datadog-internal-telemetry"
version = "0.1.0"
edition = "2021"
description = "An empty Datadog crate"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
8 changes: 8 additions & 0 deletions datadog-internal-telemetry/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
10 changes: 10 additions & 0 deletions datadog-profiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "datadog-profiler"
version = "0.1.0"
edition = "2021"
description = "An empty Datadog crate - Head over to https://docs.datadoghq.com/tracing/profiler/enabling/linux/?tab=environmentvariables for a rust compatible profiler"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
8 changes: 8 additions & 0 deletions datadog-profiler/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
10 changes: 10 additions & 0 deletions datadog-profiling/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "datadog-profiling"
version = "0.1.0"
edition = "2021"
description = "An empty Datadog crate - Head over to https://docs.datadoghq.com/tracing/profiler/enabling/linux/?tab=environmentvariables for a rust compatible profiler"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
8 changes: 8 additions & 0 deletions datadog-profiling/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
10 changes: 10 additions & 0 deletions datadog-remote-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "datadog-remote-config"
version = "0.1.0"
edition = "2021"
description = "An empty Datadog crate"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
8 changes: 8 additions & 0 deletions datadog-remote-config/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
10 changes: 10 additions & 0 deletions datadog-remote-configuration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "datadog-remote-configuration"
version = "0.1.0"
edition = "2021"
description = "An empty Datadog crate"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
8 changes: 8 additions & 0 deletions datadog-remote-configuration/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
10 changes: 10 additions & 0 deletions datadog-telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "datadog-telemetry"
version = "0.1.0"
edition = "2021"
description = "An empty Datadog crate"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
8 changes: 8 additions & 0 deletions datadog-telemetry/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
10 changes: 10 additions & 0 deletions datadog-waf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "datadog-waf"
version = "0.1.0"
edition = "2021"
description = "An empty Datadog crate"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
8 changes: 8 additions & 0 deletions datadog-waf/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
10 changes: 10 additions & 0 deletions libdatadog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "libdatadog"
version = "0.1.0"
edition = "2021"
description = "An empty Datadog crate"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
8 changes: 8 additions & 0 deletions libdatadog/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}