-
Notifications
You must be signed in to change notification settings - Fork 1
deps(library_config): bump to v18.1.0 #51
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
Changes from all commits
141e045
ac8b185
fe230fe
881ba23
6dd295c
04ac79f
71ae510
29aae3e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,21 @@ | ||
| [package] | ||
| name = "library-config" | ||
| version = "0.1.0" | ||
| version = "0.2.0" | ||
| edition = "2018" | ||
|
|
||
| [lib] | ||
| crate-type = ["cdylib", "rlib"] | ||
|
|
||
| [dependencies] | ||
| anyhow = "1" | ||
| datadog-library-config = { git = "https://github.com/DataDog/libdatadog.git", tag = "v16.0.3" } | ||
| datadog-library-config = { git = "https://github.com/DataDog/libdatadog.git", tag = "v18.1.0" } | ||
|
|
||
| wasm-bindgen = "0.2.84" | ||
| wasm-bindgen = "0.2.100" | ||
| serde = { version = "1.0", features = ["derive"] } | ||
| serde-wasm-bindgen = "0.4" | ||
|
|
||
| [dev-dependencies] | ||
| wasm-bindgen-test = "0.3.34" | ||
| wasm-bindgen-test = "0.3.50" | ||
|
|
||
| [target.'cfg(target_arch = "wasm32")'.dependencies] | ||
| getrandom = { version = "0.2", features = ["js"] } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -120,7 +120,7 @@ impl JsConfigurator { | |
| let config_entries: Vec<ConfigEntry> = config | ||
| .into_iter() | ||
| .map(|c| ConfigEntry { | ||
| name: c.name.to_str().into(), | ||
| name: c.name.to_string().into(), | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Going back to Rustc 1.80 would this now remain
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. addressed in 71ae510. |
||
| value: c.value, | ||
| source: c.source.to_str().into(), | ||
| config_id: c.config_id.unwrap_or_default(), | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| [toolchain] | ||
| channel = "1.80.0" | ||
| channel = "1.78.0" | ||
| profile = "minimal" | ||
| components = ["clippy", "rustfmt", "rust-src"] |
Uh oh!
There was an error while loading. Please reload this page.